@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@300;900&family=Zen+Maru+Gothic:wght@500;700&display=swap");
/* base color
--------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

::placeholder {
  color: red;
}

html {
  font-size: 62.5%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
article, aside, figcaption, figure, footer, header, hgroup, main, section {
  display: block;
}

p, ul, ol, li, dl, dt, dd, p, caption, th, td, form, input, textarea, blockquote, address, embed, object, figure, em {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-size: 100%;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6, h7 {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1;
  color: #1D1D1D;
  text-align: left;
  text-rendering: optimizeLegibility;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

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

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

figure {
  line-height: 0;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

img {
  vertical-align: middle;
  border: none;
}

svg:not(:root) {
  overflow: hidden;
}

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

th {
  text-align: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  vertical-align: middle;
  position: relative;
  outline: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

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

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

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

/*--Prefix--*/
/*-- flexbox --*/
/*-- text --*/
/*-- hover --*/
/*-- position --*/
/*-- aspect --*/
/*-- text --*/
/*-- point --*/
/*-- form --*/
/*-- icon --*/
/* reset
-------------------------------------------------------*/
.d-none {
  display: none !important;
}

ol,
ul {
  list-style-type: none;
}

h1, h2, h3, h4, h5, h6, h7 {
  font-style: normal;
  font-size: 100%;
  font-weight: 700;
}

:focus {
  outline: none;
}

a {
  outline: none;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-animation {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: url(../common/images/bnr_loading_sp.jpg) center/contain no-repeat rgba(30, 30, 30, 0.9);
  width: 100%;
  height: 100%;
  z-index: 99999;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}
.loading-animation .loading-img {
  position: relative;
}
.loading-animation .loading-img .loading-action {
  display: none;
  position: absolute;
  top: -20px;
  right: -47px;
}
.loading-animation .loading-img .loading-action img {
  height: 45px;
}
.loading-animation .loading-img .loading-logo img {
  display: none;
  height: 335px;
}
.loading-animation .loading-img dl dt {
  margin-bottom: 20px;
  text-align: center;
}
.loading-animation .loading-img dl dt img {
  height: 190px;
}
.loading-animation .loading-img .css-blur {
  animation: blur-anim 0.35s linear forwards;
}

/* base
-------------------------------------------------------*/
div.pageWrap {
  position: relative;
  width: 100%;
  text-align: left;
  overflow-x: hidden;
}
div.pageWrap.open {
  overflow-x: auto;
}

/* layout
-------------------------------------------------------*/
br.pcbr {
  display: none;
}

header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 120px;
  z-index: 2;
}
.header-inner .site-logo a {
  display: block;
}
.header-inner .site-logo a img {
  width: 285px;
}
.header-inner .site-logo > h1, .header-inner .site-logo > p {
  color: #003A88;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.header-inner .contact-block .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 7px;
}
.header-inner .contact-block .tel p {
  margin-right: 7px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}
.header-inner .contact-block .tel span {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #003A88;
  font-size: 2.3rem;
  letter-spacing: 0.03em;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.header-inner .contact-block .tel span::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='25' style='enable-background:new 0 0 26 25' xml:space='preserve'%3E%3Cpath d='M13 0C5.8 0 0 5.6 0 12.5S5.8 25 13 25s13-5.6 13-12.5S20.2 0 13 0zm5.4 15.6-.5 2.3c-.1.2-.3.4-.5.4-5.6 0-10.1-4.5-10.1-10.1 0-.2.2-.5.4-.5l2.3-.6c.2-.1.5.1.6.3l1 2.4c.1.2 0 .5-.1.6l-1.3 1.1c.8 1.7 2.2 3.1 3.8 3.8l1.1-1.3c.1-.2.4-.2.6-.2l2.4 1c.3.3.4.5.3.8z' style='fill:%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.header-inner .contact-block > p {
  color: #4B4B4B;
  font-size: 1rem;
}

.calendar-link {
  margin-top: 5px;
}
.calendar-link a {
  font-weight: 500;
  color: #003A88;
  font-size: 1rem;
  text-decoration: underline;
}

.fixed-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  z-index: 100 !important;
}
.fixed-menu .contact-menu {
  margin-right: 15px;
}
.fixed-menu .contact-menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 10px;
}
.fixed-menu .contact-menu > ul > li {
  width: 145px;
  height: 40px;
}
.fixed-menu .contact-menu > ul > li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border: solid 1px #003A88;
  border-radius: 4px;
  transition: 0.3s;
}
.fixed-menu .contact-menu > ul > li a span {
  color: #003A88;
  font-size: 1.3rem;
  font-weight: 500;
}
.fixed-menu .contact-menu > ul > li.tel a span::before {
  width: 16px;
  height: 16px;
  background: url(../common/images/icon_tel.svg) center center/contain no-repeat;
}
.fixed-menu .contact-menu > ul > li.contact a span::before {
  width: 15px;
  height: 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.fixed-menu .contact-menu > ul > li.line a {
  border: solid 1px #07B53B;
}
.fixed-menu .contact-menu > ul > li.line a span {
  color: #07B53B;
}
.fixed-menu .contact-menu > ul > li.line a span::before {
  width: 16px;
  height: 16px;
  background: url(../common/images/icon_line.svg) center center/contain no-repeat;
}
.fixed-menu .contact-menu > ul > li.reservation a span::before {
  width: 16px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.608' height='12.488'%3E%3Cpath d='M7.803 9.366H3.12v-3.9H1.559v6.244a.78.78 0 0 0 .78.78h6.245a.78.78 0 0 0 .78-.78V5.463H7.803Zm7.673-5.9-2.08-3.12A.785.785 0 0 0 12.745 0H2.862a.777.777 0 0 0-.649.346L.132 3.468a.781.781 0 0 0 .649 1.215h14.047a.782.782 0 0 0 .649-1.215Zm-2.99 8.634a.391.391 0 0 0 .39.39h.78a.391.391 0 0 0 .39-.39V5.463h-1.56Z' fill='%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.fixed-menu .contact-menu > ul > li.favorite a span::before {
  width: 15px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.253' height='13.077'%3E%3Cpath d='m7.126 13.077-1.033-.941C2.423 8.808 0 6.613 0 3.92A3.881 3.881 0 0 1 3.92 0a4.268 4.268 0 0 1 3.207 1.489A4.268 4.268 0 0 1 10.333 0a3.881 3.881 0 0 1 3.92 3.92c0 2.694-2.423 4.889-6.093 8.224Z' fill='%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.fixed-bottom-menu {
  bottom: -100% !important;
  transition: 0.5s;
}
.fixed-bottom-menu.is-active {
  bottom: 0 !important;
}

footer {
  width: 100%;
}
footer .footer-site-contents {
  position: relative;
  padding: 50px 0;
}
footer .footer-site-contents .site-logo-contents a {
  display: block;
  margin-bottom: 10px;
}
footer .footer-site-contents .site-logo-contents a img {
  width: 410px;
}
footer .footer-site-contents .site-logo-contents > p {
  color: #6A6A6A;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.76;
}
footer .footer-site-contents .footer-contact-block .tel-block {
  margin-bottom: 5px;
}
footer .footer-site-contents .footer-contact-block .tel-block > span {
  display: block;
  color: #003A88;
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
footer .footer-site-contents .footer-contact-block .business-info {
  margin-bottom: 15px;
}
footer .footer-site-contents .footer-contact-block .business-info p {
  color: #6A6A6A;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}
footer .footer-site-contents .footer-contact-block .business-info .calendar-link {
  width: 190px;
  height: 65px;
  margin: 0;
}
footer .footer-site-contents .footer-contact-block .business-info .calendar-link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #003A88;
  border-radius: 4px;
  font-size: 1.4rem;
  text-decoration: none;
  text-align: center;
}
footer .footer-site-contents .footer-contact-block .business-info .calendar-link a span {
  position: relative;
  padding-left: 30px;
}
footer .footer-site-contents .footer-contact-block .business-info .calendar-link a span::before {
  content: "";
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 51%;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../common/images/icon_calendar.svg) center 65%/contain no-repeat;
  transition: 0.5s ease;
}
footer .footer-site-contents .footer-contact-block .business-info .calendar-link a span::after {
  content: "";
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 52%;
  left: -20px;
  display: block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.3s;
}
footer .footer-site-contents .footer-contact-block > ul > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
footer .footer-site-contents .footer-contact-block > ul > li > a span {
  position: relative;
  padding-left: 25px;
  font-size: 1.6rem;
  font-weight: bold;
}
footer .footer-site-contents .footer-contact-block > ul > li > a span::before {
  content: "";
  display: block;
  top: 55%;
  left: 0;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.3s;
}
footer .footer-site-contents .footer-contact-block > ul > li > a span::after {
  content: "";
  display: block;
  top: 52%;
  left: -20px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 23px;
  height: 23px;
  opacity: 0;
  transition: 0.3s;
}
footer .footer-site-contents .footer-contact-block > ul > li.contact a {
  background: #003A88;
}
footer .footer-site-contents .footer-contact-block > ul > li.contact a span {
  color: #fff;
}
footer .footer-site-contents .footer-contact-block > ul > li.contact a span::before {
  width: 17px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer-site-contents .footer-contact-block > ul > li.contact a span::after {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer-site-contents .footer-contact-block > ul > li.line a {
  background: #fff;
  border: solid 1px #07B53B;
}
footer .footer-site-contents .footer-contact-block > ul > li.line a span {
  color: #07B53B;
}
footer .footer-site-contents .footer-contact-block > ul > li.line a span::before {
  width: 15px;
  height: 15px;
  background: url(../common/images/icon_line.svg) center center/contain no-repeat;
}
footer .footer-site-contents .footer-contact-block > ul > li.line a span::after {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer-site-contents .footer-contact-block > ul > li.reservation a {
  background: #003A88;
}
footer .footer-site-contents .footer-contact-block > ul > li.reservation a span {
  color: #fff;
}
footer .footer-site-contents .footer-contact-block > ul > li.reservation a span::before {
  width: 20px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.608' height='12.488'%3E%3Cpath d='M7.803 9.366H3.12v-3.9H1.559v6.244a.78.78 0 0 0 .78.78h6.245a.78.78 0 0 0 .78-.78V5.463H7.803Zm7.673-5.9-2.08-3.12A.785.785 0 0 0 12.745 0H2.862a.777.777 0 0 0-.649.346L.132 3.468a.781.781 0 0 0 .649 1.215h14.047a.782.782 0 0 0 .649-1.215Zm-2.99 8.634a.391.391 0 0 0 .39.39h.78a.391.391 0 0 0 .39-.39V5.463h-1.56Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer-site-contents .footer-contact-block > ul > li.reservation a span::after {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer-site-contents::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 4px;
  margin: 0 calc(50% - 50vw);
  background: rgb(191, 214, 242);
  background: linear-gradient(90deg, rgb(191, 214, 242) 0%, rgb(152, 185, 229) 100%);
}
footer .copyright {
  color: #9D9D9D;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.pagetop-grid {
  transition: 0.5s ease;
  position: absolute;
  right: 20px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  z-index: 5;
}
.pagetop-grid a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: #003A88;
  border-radius: 60%;
}
.pagetop-grid a img {
  width: 21px;
}

.container {
  position: relative;
  width: 100%;
}

.page-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.trigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #003A88;
  border-radius: 4px;
  cursor: pointer;
}
.trigger .menu-trigger,
.trigger .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
}
.trigger .menu-trigger {
  position: relative;
  width: 16px;
  height: 12px;
}
.trigger .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.trigger .menu-trigger span:nth-of-type(1) {
  top: 0;
}
.trigger .menu-trigger span:nth-of-type(2) {
  top: 5px;
}
.trigger .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.trigger .menu-trigger.active {
  width: 18px;
}
.trigger .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(35deg);
  transform: translateY(6px) rotate(35deg);
}
.trigger .menu-trigger.active span:nth-of-type(2) {
  display: none;
}
.trigger .menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-5px) rotate(-35deg);
  transform: translateY(-5px) rotate(-35deg);
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 10 !important;
}

.hamburger-wrapper {
  position: relative;
  width: 100%;
  overflow-y: scroll;
  background: #F7F9FC;
}
.hamburger-wrapper .header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.fixed-check-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 160px;
  height: 160px;
  z-index: 50;
}
.fixed-check-button.kurukuru:not(:hover) {
  animation: kurukuru 4s 1s infinite;
}
@keyframes kurukuru {
  35% {
    transform: rotateX(360deg);
  }
  100% {
    transform: rotatex(360deg);
  }
}
.fixed-check-button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  transform: scale(0.95) translate(10px, 10px);
}
.fixed-check-button a > p {
  position: relative;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
.fixed-check-button a > p::before {
  content: "";
  display: block;
  top: -25px;
  left: 50%;
  width: 45px;
  height: 10px;
  position: absolute;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: url(../common/images/text_check.svg) center center/contain no-repeat;
  z-index: 1;
}
.fixed-check-button a span {
  font-size: 90%;
}
.fixed-check-button a::before {
  content: "";
  display: block;
  position: absolute;
  inset: -10px;
  background: url(../common/images/check_button.svg) center center/contain no-repeat;
  filter: drop-shadow(2px 2px 10px rgba(255, 255, 255, 0.16));
  z-index: -1;
}

.fixed-contact-button {
  position: fixed;
  bottom: max(20%, 100px);
  right: -20px;
  z-index: 20;
  animation: slide 3s ease-in-out 3s infinite alternate;
}
.fixed-contact-button:hover {
  animation-play-state: paused;
}
@keyframes slide {
  0% {
    right: -20px;
  }
  50% {
    right: -20px;
  }
  60% {
    right: 0;
  }
  80% {
    right: -20px;
  }
  100% {
    right: 0;
  }
}

.fixed-button__link {
  position: relative;
  right: -117px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  padding: 12px 40px 12px 12px;
  background: #A90F34;
  border-radius: 9999px 0 0 9999px;
  transition: 0.5s ease;
  animation: show 3s;
}
.fixed-button__link:hover {
  right: 0;
}
@keyframes show {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 100%;
  }
}

.fixed-button__staff-image {
  width: 90px;
}
.fixed-button__staff-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fixed-button__comment-image {
  width: 110px;
  margin-left: 10px;
}
.fixed-button__comment-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section {
  padding: 75px 0;
}

.section-title > span {
  display: block;
  position: relative;
  margin-bottom: 10px;
  padding-left: 14px;
  color: #003A88;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
}
.section-title > span::before {
  content: "";
  display: block;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: #7F9CC3;
  border-radius: 60%;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.section-title > h2, .section-title > h1 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.7;
}

.section-intro {
  position: relative;
}
.section-intro > p {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  min-height: 78px;
  margin-right: 63px;
  padding: 10px 35px 10px 30px;
  background: #F5F5F5;
  border-radius: 20px;
  color: #4B4B4B;
  font-size: 1.3rem;
  line-height: 1.76;
}
.section-intro > p::after {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  right: -13px;
  width: 15px;
  height: 7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.7' height='7.1' style='enable-background:new 0 0 14.7 7.1' xml:space='preserve'%3E%3Cpath d='M4.2 7C2.8 7 1.4 6.8 0 6.5l.7-2.9c2.2.5 4.6.5 6.9 0 1.9-.7 3.5-2 4.7-3.7l2.5 1.7c-1.5 2.2-3.7 4-6.2 4.9h-.2C7 6.8 5.6 7 4.2 7z' style='fill:%23F5F5F5'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.section-intro::after {
  content: "";
  display: block;
  position: absolute;
}

.caption-block > p, .caption-block > h3, .caption-block > h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  min-height: 30px;
  padding-left: 20px;
  border-left: solid 3px #003A88;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.3;
}

.partner-list-section {
  padding: 80px 0 80px;
}
.partner-list-section .text-inner .title-block {
  margin-bottom: 10px;
}
.partner-list-section .text-inner .title-block > span {
  display: block;
  margin-bottom: 10px;
  color: #003A88;
  font-size: 1.5rem;
  font-weight: bold;
}
.partner-list-section .text-inner .title-block h2,
.partner-list-section .text-inner .title-block h3 {
  font-size: 2.6rem;
  letter-spacing: 0.03em;
  font-weight: bold;
  line-height: 1.69;
}
.partner-list-section .text-inner .title-block h2 span,
.partner-list-section .text-inner .title-block h3 span {
  position: relative;
  margin: 0 -2px;
  padding: 0 2px;
}
.partner-list-section .text-inner .title-block h2 span::before,
.partner-list-section .text-inner .title-block h3 span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0, 58, 136, 0.2);
}
.partner-list-section .text-inner > p {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.68;
}
.partner-list-section .partner-list-block .caption-block {
  margin-bottom: 20px;
}
.partner-list-section .partner-list-block > ul > li .partner-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 320px;
  margin-bottom: 10px;
  padding: 225px 20px 25px;
  border-radius: 6px;
  overflow: hidden;
}
.partner-list-section .partner-list-block > ul > li .partner-card figure {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.partner-list-section .partner-list-block > ul > li .partner-card figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner-list-section .partner-list-block > ul > li .partner-card .card-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: column;
}
.partner-list-section .partner-list-block > ul > li .partner-card .card-inner > span {
  display: block;
  position: relative;
  margin-bottom: 15px;
  padding-left: 8px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.partner-list-section .partner-list-block > ul > li .partner-card .card-inner > span::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.partner-list-section .partner-list-block > ul > li .partner-card .card-inner > dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: auto;
}
.partner-list-section .partner-list-block > ul > li .partner-card .card-inner > dl > dt {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.28;
}
.partner-list-section .partner-list-block > ul > li .partner-card .card-inner > dl > dd {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
.partner-list-section .partner-list-block > ul > li .partner-card::after {
  content: "";
  display: block;
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: rgb(0, 58, 136);
  background: linear-gradient(0deg, rgb(0, 58, 136) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}
.partner-list-section .partner-list-block > ul > li > p {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.33;
}
.partner-list-section .partner-list-block > ul > li > span {
  display: block;
}
.partner-list-section .partner-list-block > ul > li > span a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 20px;
  color: #4B4B4B;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
.partner-list-section .partner-list-block > ul > li > span a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 100%;
  border-bottom: solid 1px #C6C6C6;
}
.partner-list-section .partner-list-block > ul > li > span a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 4px;
  left: 65px;
  width: 9px;
  height: 1px;
  background: #C6C6C6;
  transform: rotate(45deg);
  opacity: 0;
}
.partner-list-section .qualification-by-president {
  padding: 40px 30px 35px;
  border: solid 2px #A8C0E1;
  border-radius: 6px;
}
.partner-list-section .qualification-by-president .caption-block {
  width: 755px;
  max-width: 100%;
  margin: 0 auto 20px;
}
.partner-list-section .qualification-by-president .qualification-list-inner {
  width: 755px;
  max-width: 100%;
  margin: 0 auto;
}
.partner-list-section .qualification-by-president .qualification-list-inner figure {
  position: relative;
}
.partner-list-section .qualification-by-president .qualification-list-inner figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}
.partner-list-section .qualification-by-president .qualification-list-inner > dl > dt {
  margin-bottom: 10px;
  color: #003A88;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  font-weight: bold;
}
.partner-list-section .qualification-by-president .qualification-list-inner > dl > dt::before {
  content: "[ ";
}
.partner-list-section .qualification-by-president .qualification-list-inner > dl > dt::after {
  content: " ]";
}
.partner-list-section .qualification-by-president .qualification-list-inner > dl > dd > ul > li {
  font-size: 1.3rem;
  line-height: 1.53;
}

.column-list-block {
  margin-bottom: 60px;
}
.column-list-block > li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 0 23px;
  padding: 20px 0;
  border-bottom: solid 1px #EAEAEA;
}
.column-list-block > li a figure {
  position: relative;
  width: 235px;
  border-radius: 6px;
  overflow: hidden;
}
.column-list-block > li a figure::before {
  content: "";
  display: block;
  padding-top: 68%;
}
.column-list-block > li a figure::before {
  background: #eee;
}
.column-list-block > li a figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.column-list-block > li a .text-area {
  flex: 1 0;
}
.column-list-block > li a .text-area > span {
  display: block;
  position: relative;
  margin-bottom: 5px;
  color: #003A88;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.column-list-block > li a .text-area > p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.68;
}

.consulting-section {
  position: relative;
}
.consulting-section > dl {
  margin-bottom: 30px;
  text-align: center;
}
.consulting-section > dl > dt {
  margin-bottom: 20px;
  color: #003A88;
  font-size: 1.6rem;
  font-weight: bold;
}
.consulting-section > dl > dd {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.4;
}
.consulting-section > p {
  margin-bottom: 50px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.consulting-section > p span {
  color: #003A88;
  font-weight: bold;
}
.consulting-section .consulting-point {
  margin-bottom: 55px;
}
.consulting-section .consulting-point > dl > dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100px;
  margin-bottom: 5px;
  background: #D3DFF0;
  border-radius: 6px;
  color: #003A88;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.27;
  font-weight: bold;
  text-align: center;
}
.consulting-section .consulting-point > dl > dd {
  font-size: 1.5rem;
  line-height: 1.71;
}
.consulting-section > ul > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 35px;
}
.consulting-section > ul > li > a span {
  position: relative;
  padding-left: 26px;
  font-size: 1.6rem;
  font-weight: bold;
}
.consulting-section > ul > li > a span::before {
  content: "";
  display: block;
  top: 50%;
  left: 0;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.consulting-section > ul > li > a span::after {
  content: "";
  display: block;
  top: 50%;
  left: -20px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
}
.consulting-section > ul > li.assessment a {
  background: #EC8B4E;
}
.consulting-section > ul > li.assessment a span {
  color: #fff;
}
.consulting-section > ul > li.assessment a span::before {
  width: 16px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.consulting-section > ul > li.line a {
  background: #59B74B;
}
.consulting-section > ul > li.line a span {
  color: #fff;
}
.consulting-section > ul > li.line a span::before {
  width: 18px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.273' height='17.739'%3E%3Cpath d='M10.136 0C4.538 0 0 3.686 0 8.236a7.31 7.31 0 0 0 2.257 5.175 10.073 10.073 0 0 1-2.17 3.793.315.315 0 0 0-.059.344.31.31 0 0 0 .289.19 9.055 9.055 0 0 0 5.567-2.035 12.075 12.075 0 0 0 4.252.768c5.6 0 10.136-3.686 10.136-8.236S15.735 0 10.136 0ZM5.068 9.5a1.267 1.267 0 1 1 1.267-1.267 1.266 1.266 0 0 1-1.267 1.27Zm5.068 0A1.267 1.267 0 1 1 11.4 8.236a1.266 1.266 0 0 1-1.264 1.267Zm5.068 0a1.267 1.267 0 1 1 1.267-1.267 1.266 1.266 0 0 1-1.271 1.27Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.consulting-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #F7F9FC;
}

.consulting-case-button {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.consulting-case-button .button-block {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.consulting-case-button .button-block > p {
  margin-bottom: 20px;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.03em;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
}
.consulting-case-button .button-block .link-button {
  width: 400px;
  max-width: 100%;
  height: 70px;
  margin: 0 auto;
}
.consulting-case-button .button-block .link-button a {
  background: #fff;
  border: solid 1px #fff;
  border-radius: 35px;
  color: #003A88;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
}
.consulting-case-button .button-block .link-button a::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.consulting-case-button .button-block .link-button a::after {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.consulting-case-button .swiper-wrapper {
  transition-timing-function: linear;
}
.consulting-case-button .swiper-slide {
  height: 360px !important;
}
.consulting-case-button .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.consulting-case-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #003A88;
  opacity: 0.6;
  z-index: 1;
}

.link-button {
  display: block;
  width: 280px;
  height: 60px;
}
.link-button.center {
  margin: 0 auto;
}
.link-button a, .link-button button {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: #003A88;
  border-radius: 30px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}
.link-button a::before, .link-button button::before {
  content: "";
  display: block;
  top: 50%;
  right: 18px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 10px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.link-button a::after, .link-button button::after {
  content: "";
  display: block;
  top: 50%;
  right: 18px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
}
.link-button.whitebutton {
  border: solid 1px #003a88;
  border-radius: 30px;
}
.link-button.whitebutton a, .link-button.whitebutton button {
  position: relative;
  background: #fff;
  color: #003a88;
}
.link-button.whitebutton a::before, .link-button.whitebutton button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url(../common/images/arrow-blue.svg) no-repeat center center/contain;
}
.link-button.whitebutton a::after, .link-button.whitebutton button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../common/images/arrow-white.svg) no-repeat center center/contain;
}
.link-button.whitebutton a:hover, .link-button.whitebutton button:hover {
  background: #003a88;
  color: #fff;
}
.link-button.whitebutton a:hover::before, .link-button.whitebutton button:hover::before {
  opacity: 0;
}
.link-button.whitebutton a:hover::after, .link-button.whitebutton button:hover::after {
  opacity: 1;
}

.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 10px;
  min-height: 40px;
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 23px;
}
.breadcrumbs ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.breadcrumbs ul li:first-child a {
  padding-left: 15px;
}
.breadcrumbs ul li:first-child a::before {
  content: "";
  top: 50%;
  left: 0;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background: url(../common/images/icon_home.svg) center center/contain no-repeat;
}
.breadcrumbs ul li:not(:last-child) a {
  color: #003A88;
}
.breadcrumbs ul li:not(:last-child) a::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -15px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #AEAEAE;
  border-right: 1px solid #AEAEAE;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.breadcrumbs ul li:last-child a {
  color: #888888;
  pointer-events: none;
}
.breadcrumbs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #F1F1F1;
}

.page-head-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  min-height: 100px;
}
.page-head-title h2, .page-head-title h1 {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.25;
}
.page-head-title h2 span, .page-head-title h1 span {
  font-size: 2.2rem;
}
.page-head-title.top, .page-head-title.top-bgnone {
  min-height: 160px;
  text-align: center;
}
.page-head-title.top > p, .page-head-title.top-bgnone > p {
  padding-top: 20px;
  font-size: 1.4rem;
  line-height: 1.57;
}
.page-head-title.frozen {
  margin-bottom: 60px;
  min-height: 160px;
  text-align: center;
}
.page-head-title.frozen::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 136px;
  height: 119px;
  background: url(../residents/frozen/images/frozen_img.png) center center/contain no-repeat;
  z-index: -1;
}
.page-head-title.frozen > p {
  padding-top: 20px;
  font-size: 1.4rem;
  line-height: 1.57;
}
.page-head-title.support_move {
  margin-bottom: 55px;
  min-height: 160px;
  text-align: center;
}
.page-head-title.support_move::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 146px;
  height: 152px;
  background: url(../residents/support_move/images/title_img.png) center center/contain no-repeat;
  z-index: -1;
}
.page-head-title.support_move > p {
  padding-top: 20px;
  font-size: 1.4rem;
  line-height: 1.57;
}
.page-head-title.search {
  min-height: 80px;
}
.page-head-title.search > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  top: 50%;
  right: 0;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0 0 3px 10px;
  border-bottom: solid 1px #003A88;
  color: #003A88;
  font-size: 1.4rem;
}
.page-head-title.search > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  margin-right: 5px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #003A88;
  border-right: 1px solid #003A88;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.page-head-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background-image: linear-gradient(135deg, #E4ECF6 25%, #fff 25%, #fff 55%, #E4ECF6 55%, #E4ECF6 75%, #fff 75%);
  background-size: 4px 4px;
}

.student-contents-button a {
  display: block;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.05);
}
.student-contents-button a img {
  width: 100%;
}

.line-link-button {
  position: relative;
  padding: 50px 0;
}
.line-link-button span {
  display: block;
}
.line-link-button span a {
  display: block;
}
.line-link-button span a img {
  width: 100%;
}
.line-link-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #F8F8F8;
}

.more-loading-button {
  width: 420px;
  height: 70px;
  margin: 45px auto 0;
}
.more-loading-button a, .more-loading-button button {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: #003A88;
  border-radius: 40px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
.more-loading-button a::after, .more-loading-button button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 14px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(90deg);
  background: url(../common/images/icon_arrow_right.svg) center center/contain no-repeat;
}

button {
  outline: none;
  border: none;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  cursor: pointer;
}

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #fff;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-container {
  width: 715px;
  border-radius: 6px;
}
.modaal-container button.modaal-close-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 40px;
  margin: 0 auto;
  background: #4B4B4B;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.modaal-container button.modaal-close-button::before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  width: 9px;
  height: 9px;
  background: url(../common/images/icon_modal_close.svg) center center/contain no-repeat;
}

.modaal-image .modaal-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
}

.modaal-content-container {
  padding: 30px;
}
.modaal-content-container .gmap {
  width: 100% !important;
  height: 350px;
}

.modaal-gallery-item img {
  max-width: calc(100vw - 280px);
  max-height: calc((100vh - 120px) / 1.2);
  height: 500px;
  height: 500px;
  object-fit: contain;
}

.modaal-content-container .gmap {
  margin-bottom: 25px;
}
.modaal-content-container .overview {
  margin-bottom: 20px;
}
.modaal-content-container .overview > dl, .modaal-content-container .overview .article-title-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 10px;
}
.modaal-content-container .overview > dl > dt, .modaal-content-container .overview > dl > span, .modaal-content-container .overview .article-title-inner > dt, .modaal-content-container .overview .article-title-inner > span {
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 50px;
  height: 20px;
  padding: 4px;
  background: #003A88;
  color: #fff;
  font-size: 1.1rem;
}
.modaal-content-container .overview > dl > dd, .modaal-content-container .overview > dl > h2, .modaal-content-container .overview > dl > h1, .modaal-content-container .overview .article-title-inner > dd, .modaal-content-container .overview .article-title-inner > h2, .modaal-content-container .overview .article-title-inner > h1 {
  color: #003A88;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}
.modaal-content-container .overview .sale-property-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 10px;
}
.modaal-content-container .overview .sale-property-name > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 5px;
}
.modaal-content-container .overview .sale-property-name > ul > li {
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 50px;
  height: 20px;
  padding: 4px;
  background: #003A88;
  color: #fff;
  font-size: 1.1rem;
}
.modaal-content-container .overview .sale-property-name > ul > li.new {
  display: none;
}
.modaal-content-container .overview .sale-property-name > p {
  color: #003A88;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}
.modaal-content-container .overview > p {
  margin-bottom: 20px;
  color: #003A88;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
.modaal-content-container .overview > span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 15px;
  height: 80px;
  position: relative;
}
.pagination > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pagination > ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 21px;
  height: 21px;
}
.pagination > ul li a, .pagination > ul li span {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 2px;
  color: #003A88;
  font-size: 1.6rem;
  font-weight: 500;
}
.pagination > ul li a.current, .pagination > ul li span.current {
  background: #003A88;
  color: #fff;
  pointer-events: none;
}
.pagination > ul li a.dotted, .pagination > ul li span.dotted {
  color: #003A88;
  font-size: 1.6rem;
  font-weight: 500;
}
.pagination > span {
  display: block;
}
.pagination > span a {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.pagination > span a::after {
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.pagination > span.prev a::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid #003A88;
  border-right: 1px solid #003A88;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.pagination > span.prev.none-nav a {
  pointer-events: none;
}
.pagination > span.prev.none-nav a::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid #909090;
  border-right: 1px solid #909090;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.pagination > span.next a::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid #003A88;
  border-right: 1px solid #003A88;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.pagination > span.next.none-nav a {
  pointer-events: none;
}
.pagination > span.next.none-nav a::after {
  width: 7px;
  height: 7px;
  border-top: 1px solid #909090;
  border-right: 1px solid #909090;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

/* fadeUp */
.fadeUp {
  position: relative;
  animation-name: fadeUpAnime;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeIn {
  position: relative;
  animation-name: fadeInAnime;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    top: 50px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUpTrigger {
  position: relative;
  top: 20px;
  transition: 0.3s ease;
  transition-delay: 0.4s;
  opacity: 0;
}
.fadeUpTrigger.scrollfade {
  opacity: 1;
  top: 0;
}

.fadeInTrigger {
  opacity: 0;
  transition: 0.3s ease;
  transition-delay: 0.4s;
}
.fadeInTrigger.scrollfade {
  opacity: 1;
}

.fadeUpLoad {
  opacity: 0;
  animation-delay: 0.2s;
}

.fadeInLoad {
  opacity: 0;
  animation-delay: 0.2s;
}

.column-link-button-block {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.column-link-button-block > ul > li {
  height: 280px;
}
.column-link-button-block > ul > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 58, 136, 0.5);
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.34;
  text-align: center;
}
.column-link-button-block > ul > li > a::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.column-link-button-block > ul > li > a::after {
  content: "";
  display: block;
  width: 13px;
  height: 12px;
  margin-left: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.c-contact-section {
  position: relative;
  padding: 70px 0;
}
.c-contact-section.bg-offwhite::before {
  background: #F7F9FC;
}
.c-contact-section.bg-offwhite .contact-wrap {
  border: 1px solid #003A88;
}
.c-contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #BFDDF4;
}
.c-contact-section .contact-wrap {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 55px;
  background: #fff;
  border-radius: 10px;
}
.c-contact-section .contact-wrap h2, .c-contact-section .contact-wrap h3, .c-contact-section .contact-wrap h4 {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 10px;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.c-contact-section .contact-wrap h2::after, .c-contact-section .contact-wrap h3::after, .c-contact-section .contact-wrap h4::after {
  position: absolute;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  content: "";
  display: block;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #003A88;
}
.c-contact-section .contact-wrap > p {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
.c-contact-section .contact-wrap .tel-block {
  margin-bottom: 30px;
}
.c-contact-section .contact-wrap .tel-block .tel-tap {
  margin-bottom: 5px;
  text-align: center;
}
.c-contact-section .contact-wrap .tel-block .tel-tap a {
  position: relative;
  display: inline-block;
  padding-left: 55px;
  color: #003A88;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}
.c-contact-section .contact-wrap .tel-block .tel-tap a::before {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='25' style='enable-background:new 0 0 26 25' xml:space='preserve'%3E%3Cpath d='M13 0C5.8 0 0 5.6 0 12.5S5.8 25 13 25s13-5.6 13-12.5S20.2 0 13 0zm5.4 15.6-.5 2.3c-.1.2-.3.4-.5.4-5.6 0-10.1-4.5-10.1-10.1 0-.2.2-.5.4-.5l2.3-.6c.2-.1.5.1.6.3l1 2.4c.1.2 0 .5-.1.6l-1.3 1.1c.8 1.7 2.2 3.1 3.8 3.8l1.1-1.3c.1-.2.4-.2.6-.2l2.4 1c.3.3.4.5.3.8z' style='fill:%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  width: 40px;
  height: 40px;
}
.c-contact-section .contact-wrap .tel-block p {
  color: #6A6A6A;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
.c-contact-section .contact-wrap .tel-block .calendar-link {
  text-align: center;
}
.c-contact-section .contact-wrap .tel-block .calendar-link a {
  font-size: 1.2rem;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn {
  max-width: 360px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn.btn-mail a {
  background: #DE7737;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn.btn-mail a span::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 13px;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn.btn-line a {
  background: #59B74B;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn.btn-line a span::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.273' height='17.739'%3E%3Cpath d='M10.136 0C4.538 0 0 3.686 0 8.236a7.31 7.31 0 0 0 2.257 5.175 10.073 10.073 0 0 1-2.17 3.793.315.315 0 0 0-.059.344.31.31 0 0 0 .289.19 9.055 9.055 0 0 0 5.567-2.035 12.075 12.075 0 0 0 4.252.768c5.6 0 10.136-3.686 10.136-8.236S15.735 0 10.136 0ZM5.068 9.5a1.267 1.267 0 1 1 1.267-1.267 1.266 1.266 0 0 1-1.267 1.27Zm5.068 0A1.267 1.267 0 1 1 11.4 8.236a1.266 1.266 0 0 1-1.264 1.267Zm5.068 0a1.267 1.267 0 1 1 1.267-1.267 1.266 1.266 0 0 1-1.271 1.27Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 19px;
  height: 16px;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn:not(:last-child) {
  margin-bottom: 10px;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 35px;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn a span {
  position: relative;
  padding-left: 25px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn a span::before {
  content: "";
  display: block;
  top: 55%;
  left: 0;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.3s;
}
.c-contact-section .contact-wrap .contact-link-btn .link-btn a span::after {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  top: 52%;
  left: -20px;
  width: 23px;
  height: 23px;
  opacity: 0;
  transition: 0.3s;
}

.c-section-title {
  margin-bottom: 30px;
}
.c-section-title.dotted h2, .c-section-title.dotted h3, .c-section-title.dotted h4 {
  position: relative;
  padding-left: 15px;
  border-left: none;
  color: #4B4B4B;
  font-size: 2rem;
}
.c-section-title.dotted h2::before, .c-section-title.dotted h3::before, .c-section-title.dotted h4::before {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: #003A88;
  border-radius: 50%;
}
.c-section-title h2, .c-section-title h3, .c-section-title h4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  min-height: 30px;
  padding-left: 20px;
  border-left: solid 3px #003A88;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (min-width: 321px) {
  /* ------------------------------------------------------*/
  .minbr {
    display: none;
  }
}
@media screen and (min-width: 375px) {
  .btn-shopping {
    margin-bottom: 100px;
  }
  .btn-shopping a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 90%;
    height: 120px;
    margin: 0 auto;
    padding: 0;
    color: #000;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
  }
  .btn-shopping a dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .btn-shopping a dl dt {
    margin: 0 15px 0 0;
  }
  .btn-shopping a dl dd img {
    height: 55px;
  }
}
@media screen and (max-width: 1025px) {
  /* ------------------------------------------------------*/
  .p-home .pc_logo {
    display: none;
  }
  .p-home .pc_nav {
    display: none;
  }
  .p-home .pc_bnr {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  /* ------------------------------------------------------*/
  .sp-display-none {
    display: none;
  }
  .pagetop-grid {
    width: 48px;
    height: 48px;
  }
  .page-content {
    padding: 0 15px;
  }
  .fixed-menu {
    top: 20px;
    right: 15px;
  }
  .fixed-menu .contact-menu {
    display: none;
    margin-right: 5px;
  }
  .fixed-menu .contact-menu > ul {
    gap: 0 5px;
  }
  .fixed-menu .contact-menu > ul > li.tel {
    width: 40px;
    height: 40px;
  }
  .fixed-menu .contact-menu > ul > li.tel a span {
    position: relative;
    text-indent: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .fixed-menu .contact-menu > ul > li.tel a span::before {
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .fixed-menu .contact-menu > ul > li.contact {
    width: 40px;
    height: 40px;
  }
  .fixed-menu .contact-menu > ul > li.contact a span {
    position: relative;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .fixed-menu .contact-menu > ul > li.contact a span::before {
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .fixed-menu .contact-menu > ul > li.line {
    width: 40px;
    height: 40px;
  }
  .fixed-menu .contact-menu > ul > li.line a {
    background: #07B53B;
  }
  .fixed-menu .contact-menu > ul > li.line a span {
    position: relative;
    width: 100%;
    height: 100%;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .fixed-menu .contact-menu > ul > li.line a span::before {
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .fixed-menu .contact-menu > ul > li.reservation {
    display: none;
    width: 60px;
    height: 40px;
  }
  .fixed-menu .contact-menu > ul > li.reservation span {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 1rem;
  }
  .fixed-menu .contact-menu > ul > li.reservation span::before {
    content: "";
    display: block;
    margin-right: 4px;
  }
  .fixed-menu .contact-menu > ul > li.favorite {
    width: 40px;
    height: 40px;
  }
  .fixed-menu .contact-menu > ul > li.favorite span {
    position: relative;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .fixed-menu .contact-menu > ul > li.favorite span::before {
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .fixed-bottom-menu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #EFF4FA;
    z-index: 10;
  }
  .fixed-bottom-menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 15px;
    padding: 10px 15px;
  }
  .fixed-bottom-menu ul li {
    flex: 1 0;
    height: 40px;
  }
  .fixed-bottom-menu ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 4px;
  }
  .fixed-bottom-menu ul li a i {
    font-style: normal;
  }
  .fixed-bottom-menu ul li.tel a {
    background: #fff;
    border: solid 1px #003A88;
  }
  .fixed-bottom-menu ul li.tel a span {
    position: relative;
    padding-left: 21px;
    color: #003A88;
    font-size: 1.3rem;
    font-weight: bold;
  }
  .fixed-bottom-menu ul li.tel a span::before {
    content: "";
    display: block;
    top: 50%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath d='m31.087 22.613-7-3a1.5 1.5 0 0 0-1.75.431l-3.1 3.788A23.167 23.167 0 0 1 8.163 12.757l3.788-3.1a1.5 1.5 0 0 0 .431-1.75l-3-7A1.51 1.51 0 0 0 7.663.038l-6.5 1.5A1.5 1.5 0 0 0 0 3a29 29 0 0 0 29 29 1.5 1.5 0 0 0 1.463-1.163l1.5-6.5a1.518 1.518 0 0 0-.876-1.725Z' fill='%23003A88'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .fixed-bottom-menu ul li.line a {
    background: #07B53B;
  }
  .fixed-bottom-menu ul li.line a span {
    position: relative;
    padding-left: 24px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
  }
  .fixed-bottom-menu ul li.line a span i {
    display: none;
  }
  .fixed-bottom-menu ul li.line a span::before {
    content: "";
    display: block;
    top: 50%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 22px;
    height: 22px;
    background: url(../common/images/icon_line.svg) center center/contain no-repeat;
  }
  .fixed-bottom-menu ul li.contact a .pc-text {
    display: none;
  }
  .fixed-bottom-menu ul li.contact a .sp-text {
    display: block;
    font-size: 1.2rem;
  }
  .fixed-contact-button {
    display: none;
  }
  .hamburger-wrapper {
    padding: 0 15px;
  }
  .hamburger-wrapper .header-inner {
    margin-bottom: 15px;
    padding: 0;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li {
    width: 48.5%;
    height: 60px;
    margin-top: 10px;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: solid 1px #003A88;
    border-radius: 2px;
    color: #003A88;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.tel {
    display: none;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.contact {
    width: 100%;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.contact a::before {
    content: "";
    display: block;
    margin-right: 7px;
    width: 16px;
    height: 16px;
    background: url(../common/images/icon_contact.svg) center 65%/contain no-repeat;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.line {
    display: none;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.line a {
    border: solid 1px #07B53B;
    color: #07B53B;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.line a::before {
    content: "";
    display: block;
    margin-right: 7px;
    width: 16px;
    height: 16px;
    background: url(../common/images/icon_line.svg) center 65%/contain no-repeat;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.reservation a::before {
    content: "";
    display: block;
    margin-right: 7px;
    width: 16px;
    height: 13px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.608' height='12.488'%3E%3Cpath d='M7.803 9.366H3.12v-3.9H1.559v6.244a.78.78 0 0 0 .78.78h6.245a.78.78 0 0 0 .78-.78V5.463H7.803Zm7.673-5.9-2.08-3.12A.785.785 0 0 0 12.745 0H2.862a.777.777 0 0 0-.649.346L.132 3.468a.781.781 0 0 0 .649 1.215h14.047a.782.782 0 0 0 .649-1.215Zm-2.99 8.634a.391.391 0 0 0 .39.39h.78a.391.391 0 0 0 .39-.39V5.463h-1.56Z' fill='%23003A88'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.favorite a::before {
    content: "";
    display: block;
    margin-right: 7px;
    width: 16px;
    height: 13px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.253' height='13.077'%3E%3Cpath d='m7.126 13.077-1.033-.941C2.423 8.808 0 6.613 0 3.92A3.881 3.881 0 0 1 3.92 0a4.268 4.268 0 0 1 3.207 1.489A4.268 4.268 0 0 1 10.333 0a3.881 3.881 0 0 1 3.92 3.92c0 2.694-2.423 4.889-6.093 8.224Z' fill='%23003A88'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.calendar {
    margin-left: 3%;
  }
  .hamburger-wrapper .hamburger-contact-menu > ul > li.calendar a::before {
    content: "";
    display: block;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    background: url(../common/images/icon_calendar.svg) center 65%/contain no-repeat;
  }
  .global-menu-block .main-menu {
    padding-bottom: 30px;
    border-bottom: solid 1px #EAEAEA;
  }
  .global-menu-block .main-menu > ul > li > dl > dt {
    position: relative;
  }
  .global-menu-block .main-menu > ul > li > dl > dt a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60px;
    padding-left: 35px;
    background: #EFF4FA;
    border-radius: 3px;
    font-size: 1.8rem;
    font-weight: bold;
    pointer-events: none;
  }
  .global-menu-block .main-menu > ul > li > dl > dt a::after {
    content: "";
    display: block;
    top: 50%;
    right: 50px;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1px;
    height: 45px;
    background: #B5BDC8;
  }
  .global-menu-block .main-menu > ul > li > dl > dt::before, .global-menu-block .main-menu > ul > li > dl > dt::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: #003A88;
    z-index: 1;
    transition: 0.3s;
  }
  .global-menu-block .main-menu > ul > li > dl > dt::before {
    top: 50%;
    right: 19px;
    transform: rotate(0deg);
  }
  .global-menu-block .main-menu > ul > li > dl > dt::after {
    top: 50%;
    right: 19px;
    transform: rotate(90deg);
  }
  .global-menu-block .main-menu > ul > li > dl > dt.open::before {
    transform: rotate(360deg);
  }
  .global-menu-block .main-menu > ul > li > dl > dt.open::after {
    opacity: 0;
  }
  .global-menu-block .main-menu > ul > li > dl > dd {
    display: none;
  }
  .global-menu-block .main-menu > ul > li > dl > dd > ul {
    padding: 15px 0;
  }
  .global-menu-block .main-menu > ul > li > dl > dd > ul > li > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 28px;
    padding: 10px 15px;
    color: #4B4B4B;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .global-menu-block .main-menu > ul > li > dl > dd > ul > li > a[target=_blank]:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin: 2px 0 0 6px;
    background: url(../common/images/icon_link.svg) center center/contain no-repeat;
  }
  .global-menu-block .main-menu > ul > li > dl > dd > ul > li:not(:last-child) {
    margin-bottom: 5px;
  }
  .global-menu-block .main-menu > ul > li > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60px;
    padding-left: 35px;
    background: #EFF4FA;
    border-radius: 3px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .global-menu-block .main-menu > ul > li > a::before {
    content: "";
    display: block;
    top: 53%;
    left: 15px;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 14px;
    height: 14px;
    background: url(../common/images/icon_menu_arrow.svg) center center/contain no-repeat;
  }
  .global-menu-block .main-menu > ul > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .global-menu-block .side-menu {
    padding: 20px 0;
  }
  .global-menu-block .side-menu > ul > li > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 35px;
    color: #003A88;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .global-menu-block .side-menu > ul > li > a[target=_blank]:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin: 2px 0 0 6px;
    background: url(../common/images/icon_link.svg) center center/contain no-repeat;
  }
  .global-menu-block .side-menu > ul > li > a.ig-link {
    padding-left: 22px;
  }
  .global-menu-block .side-menu > ul > li > a.ig-link::after {
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    margin: 2px 0 0 0;
    background: url(../common/images/icon_ig.svg) center center/contain no-repeat;
  }
  .global-menu-block .side-menu > ul > li:not(:last-child) {
    margin-bottom: 5px;
  }
  .header-inner {
    height: 80px;
    padding: 0 15px;
  }
  .header-inner .site-logo a {
    margin-bottom: 3px;
  }
  .header-inner .site-logo a img {
    width: 262px;
  }
  .header-inner .contact-block {
    display: none;
  }
  footer {
    padding: 0 15px;
  }
  footer .footer-site-contents {
    padding: 45px 0 0;
  }
  footer .footer-site-contents .site-logo-contents {
    margin-bottom: 20px;
  }
  footer .footer-site-contents .site-logo-contents a {
    margin-bottom: 10px;
  }
  footer .footer-site-contents .site-logo-contents a img {
    width: 317px;
    max-width: 100%;
  }
  footer .footer-site-contents .site-logo-contents > p {
    font-size: 1.1rem;
    line-height: 1.68;
  }
  footer .footer-site-contents .footer-contact-block .tel-block {
    margin-bottom: 10px;
  }
  footer .footer-site-contents .footer-contact-block .tel-block > span {
    position: relative;
    padding-left: 40px;
    font-size: 2.6rem;
    font-weight: 900;
  }
  footer .footer-site-contents .footer-contact-block .tel-block > span::before {
    content: "";
    display: block;
    top: 50%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='25' style='enable-background:new 0 0 26 25' xml:space='preserve'%3E%3Cpath d='M13 0C5.8 0 0 5.6 0 12.5S5.8 25 13 25s13-5.6 13-12.5S20.2 0 13 0zm5.4 15.6-.5 2.3c-.1.2-.3.4-.5.4-5.6 0-10.1-4.5-10.1-10.1 0-.2.2-.5.4-.5l2.3-.6c.2-.1.5.1.6.3l1 2.4c.1.2 0 .5-.1.6l-1.3 1.1c.8 1.7 2.2 3.1 3.8 3.8l1.1-1.3c.1-.2.4-.2.6-.2l2.4 1c.3.3.4.5.3.8z' style='fill:%23003A88'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  footer .footer-site-contents .footer-contact-block .business-info {
    margin-bottom: 10px;
  }
  footer .footer-site-contents .footer-contact-block .business-info p {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  footer .footer-site-contents .footer-contact-block .business-info .calendar-link {
    width: 100%;
    height: 50px;
  }
  footer .footer-site-contents .footer-contact-block .business-info .calendar-link a {
    font-size: 1.3rem;
  }
  footer .footer-site-contents .footer-contact-block .business-info .calendar-link a span {
    padding-left: 28px;
  }
  footer .footer-site-contents .footer-contact-block .business-info .calendar-link a span::before {
    top: 49%;
  }
  footer .footer-site-contents .footer-contact-block > ul > li {
    width: 100%;
    height: 60px;
  }
  footer .footer-site-contents .footer-contact-block > ul > li > a span {
    font-size: 1.5rem;
  }
  footer .footer-site-contents .footer-contact-block > ul > li.contact a span::before {
    width: 15px;
    height: 13px;
  }
  footer .footer-site-contents .footer-contact-block > ul > li.reservation a span::before {
    width: 16px;
    height: 15px;
  }
  footer .footer-site-contents .footer-contact-block > ul > li:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .global-menu-block {
    padding: 30px 0 0;
  }
  footer .copyright {
    padding: 30px 0;
  }
  .fixed-check-button {
    right: 10px;
    bottom: 20px;
    width: 130px;
    height: 130px;
  }
  .fixed-check-button a > p {
    font-size: 1.4rem;
  }
  .fixed-check-button a > p::before {
    content: "";
    display: block;
    top: -18px;
    left: 50%;
    width: 47px;
    height: 10px;
  }
  .title-inner {
    margin-bottom: 20px;
  }
  .section-title > span {
    margin-bottom: 5px;
    padding-left: 10px;
    font-size: 1.2rem;
  }
  .section-title > span::before {
    width: 5px;
    height: 5px;
  }
  .section-title > h2, .section-title > h1 {
    font-size: 2.5rem;
    line-height: 1.36;
  }
  .section-intro > p {
    min-height: auto;
    margin-right: 50px;
    padding: 10px 15px;
    border-radius: 10px;
    line-height: 1.69;
  }
  .section-intro > p::after {
    top: 24px;
    right: -7px;
    width: 11px;
    height: 5px;
  }
  .section-intro::after {
    top: -38px;
    width: 60px;
    height: 105px;
  }
  .caption-block > p, .caption-block > h3, .caption-block > h2 {
    min-height: 27px;
    padding-left: 15px;
    border-left: solid 2px #003A88;
    font-size: 2rem;
  }
  .partner-list-section {
    padding: 50px 0 60px;
  }
  .partner-list-section .text-inner {
    margin-bottom: 20px;
  }
  .partner-list-section .text-inner .title-block {
    margin-bottom: 15px;
  }
  .partner-list-section .text-inner .title-block > span {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  .partner-list-section .text-inner .title-block h2,
  .partner-list-section .text-inner .title-block h3 {
    font-size: 2.5rem;
    line-height: 1.36;
  }
  .partner-list-section .text-inner > p {
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .partner-list-section .partner-list-block .caption-block {
    margin-bottom: 30px;
  }
  .partner-list-section .partner-list-block > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 16px;
    position: relative;
    margin: -40px 0 60px;
  }
  .partner-list-section .partner-list-block > ul > li {
    margin-top: 40px;
  }
  .partner-list-section .partner-list-block > ul > li .partner-card {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding: 0 10px;
  }
  .partner-list-section .partner-list-block > ul > li .partner-card .card-inner {
    height: 90px;
  }
  .partner-list-section .partner-list-block > ul > li .partner-card .card-inner > span {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  .partner-list-section .partner-list-block > ul > li .partner-card .card-inner > dl > dt {
    margin-bottom: 10px;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
  }
  .partner-list-section .partner-list-block > ul > li .partner-card .card-inner > dl > dd {
    font-size: 1.4rem;
  }
  .partner-list-section .partner-list-block > ul > li .partner-card::after {
    height: 120px;
  }
  .partner-list-section .partner-list-block > ul > li > p {
    margin-bottom: 10px;
  }
  .partner-list-section .partner-list-block > ul > li > span a {
    width: 84px;
    height: 22px;
    font-size: 1.3rem;
  }
  .partner-list-section .qualification-by-president {
    padding: 40px 20px 35px;
  }
  .partner-list-section .qualification-by-president .caption-block {
    margin-bottom: 30px;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner figure {
    width: 63%;
    margin: 0 auto 25px;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner figure::before {
    content: "";
    display: block;
    padding-top: 94.2%;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner > dl > dt {
    font-size: 1.7rem;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner > dl > dd > ul li {
    font-size: 1.5rem;
  }
  .column-list-block {
    margin-bottom: 30px;
  }
  .column-list-block > li a {
    gap: 0 15px;
  }
  .column-list-block > li a figure {
    width: 49%;
    max-width: 250px;
  }
  .column-list-block > li a .text-area span {
    padding: 0;
    font-size: 1rem;
  }
  .column-list-block > li a .text-area span::before {
    display: none;
  }
  .column-list-block > li a .text-area p {
    font-size: 1.5rem;
    line-height: 1.33;
  }
  .consulting-section {
    padding: 55px 0 60px;
  }
  .consulting-section > dl {
    margin-bottom: 25px;
  }
  .consulting-section > dl > dt {
    font-size: 1.3rem;
    line-height: 1.69;
  }
  .consulting-section > dl > dd {
    font-size: 2.5rem;
    line-height: 1.36;
  }
  .consulting-section > p {
    margin-bottom: 30px;
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .consulting-section .consulting-point {
    padding: 0 25px;
  }
  .consulting-section .consulting-point > dl {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .consulting-section .consulting-point > dl > dt {
    height: 70px;
    font-size: 1.6rem;
  }
  .consulting-section .consulting-point > dl > dd {
    line-height: 1.5;
  }
  .consulting-section .consulting-point > dl:not(:last-child) {
    padding-bottom: 52px;
  }
  .consulting-section .consulting-point > dl:not(:last-child)::after {
    content: "";
    display: block;
    bottom: 15px;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 20px;
    height: 20px;
    background: url(../common/images/icon_plus.svg) center center/contain no-repeat;
  }
  .consulting-section > ul > li {
    width: 345px;
    max-width: 100%;
    height: 70px;
    margin: 0 auto;
  }
  .consulting-section > ul > li > a span {
    font-size: 1.7rem;
  }
  .consulting-section > ul > li.assessment a span::before {
    width: 19px;
    height: 14px;
  }
  .consulting-section > ul > li.line a span::before {
    width: 18px;
    height: 16px;
  }
  .consulting-section > ul > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .consulting-case-button .button-block {
    width: calc(100% - 30px);
  }
  .consulting-case-button .button-block > p {
    margin-bottom: 15px;
    font-size: 1.7rem;
    line-height: 1.35;
  }
  .consulting-case-button .button-block .link-button a {
    background: #fff;
    border: solid 1px #fff;
    border-radius: 35px;
    text-align: center;
  }
  .consulting-case-button .button-block .link-button a::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23003A88'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .consulting-case-button .button-block .link-button a::after {
    background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23003A88'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .consulting-case-button .swiper-slide {
    width: 375px !important;
    height: 270px !important;
  }
  .link-button {
    max-width: 100%;
    height: 52px;
  }
  .link-button a::before {
    right: 15px;
    width: 9px;
    height: 8px;
  }
  .breadcrumbs {
    min-height: 35px;
    padding: 5px 15px;
  }
  .page-head-title {
    min-height: 85px;
    padding: 30px 5px;
  }
  .page-head-title h2, .page-head-title > h1 {
    font-size: 1.8rem;
  }
  .page-head-title h2 span, .page-head-title > h1 span {
    font-size: 1.4rem;
  }
  .page-head-title.top, .page-head-title.top-bgnone {
    min-height: 100px;
    margin-bottom: 35px;
    padding: 40px 15px 45px;
  }
  .page-head-title.top > p, .page-head-title.top-bgnone > p {
    padding-top: 18px;
    line-height: 1.5;
    text-align: left;
  }
  .page-head-title.search > a {
    position: absolute;
    top: auto;
    bottom: -35px;
    transform: translate(0, 0);
  }
  .page-head-title.frozen {
    margin-bottom: 35px;
  }
  .page-head-title.frozen::after {
    width: 105px;
    height: 86px;
    right: -15px;
  }
  .page-head-title.frozen > p {
    text-align: left;
  }
  .page-head-title.support_move {
    margin-bottom: 35px;
  }
  .page-head-title.support_move::after {
    position: absolute;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    width: 77px;
    height: 81px;
    bottom: 0;
    right: -30px;
  }
  .page-head-title.support_move > p {
    text-align: left;
  }
  .more-loading-button {
    width: 270px;
    max-width: 100%;
    height: 53px;
  }
  .more-loading-button a::after {
    right: 15px;
  }
  .modaal-content-container .gmap {
    width: 100% !important;
  }
  .modaal-container {
    width: 100%;
    border-radius: 3px;
  }
  .modaal-content-container {
    padding: 15px;
  }
  .modaal-image .modaal-inner-wrapper {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .modaal-gallery-item img {
    max-width: calc(100vw - 80px);
    max-height: calc((100vh - 80px) / 1.2);
    height: 600px;
    height: 600px;
    object-fit: contain;
  }
  .pagination {
    height: 60px;
  }
  .pagination > ul {
    gap: 10px;
  }
  .pagination > ul li a, .pagination > ul li span {
    font-size: 1.5rem;
  }
  .pagination > ul li a.dotted, .pagination > ul li span.dotted {
    font-size: 1.5rem;
  }
  .c-contact-section {
    padding: 50px 0;
  }
  .c-contact-section .contact-wrap {
    padding: 35px 20px;
    border-radius: 5px;
  }
  .c-contact-section .contact-wrap h2, .c-contact-section .contact-wrap h3, .c-contact-section .contact-wrap h4 {
    margin-bottom: 25px;
    font-size: 2rem;
  }
  .c-contact-section .contact-wrap > p {
    font-size: 1.4rem;
  }
  .c-contact-section .contact-wrap .tel-block .tel-tap a {
    padding-left: 37px;
    font-size: 2.8rem;
  }
  .c-contact-section .contact-wrap .tel-block .tel-tap a::before {
    width: 27px;
    height: 27px;
  }
  .c-contact-section .contact-wrap .tel-block p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .c-contact-section .contact-wrap .tel-block .calendar-link a {
    font-size: 1.1rem;
  }
  .c-contact-section .contact-wrap .contact-link-btn .link-btn {
    height: 60px;
  }
  .c-contact-section .contact-wrap .contact-link-btn .link-btn.btn-mail a::before {
    width: 17px;
    height: 13px;
  }
  .c-contact-section .contact-wrap .contact-link-btn .link-btn.btn-line a::before {
    width: 19px;
    height: 16px;
  }
  .c-contact-section .contact-wrap .contact-link-btn .link-btn a span {
    font-size: 1.4rem;
  }
  .c-section-title {
    margin-bottom: 20px;
  }
  .c-section-title.dotted h2, .c-section-title.dotted h3, .c-section-title.dotted h4 {
    font-size: 1.9rem;
  }
  .c-section-title h2, .c-section-title h3, .c-section-title h4 {
    padding-left: 15px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 960px) {
  /* ------------------------------------------------------*/
  br.pcbr {
    display: block;
  }
  br.spbr {
    display: none;
  }
  div.pageWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    margin: 0 auto;
  }
  div.container {
    position: relative;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 0 10px;
  }
  a, a *,
  button, button * {
    transition: 0.5s ease;
  }
  footer .footer-site-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    width: 980px;
    max-width: 100%;
    margin: 0 auto;
    gap: 0 85px;
  }
  footer .footer-site-contents .footer-contact-block {
    flex: 1 0;
  }
  footer .footer-site-contents .footer-contact-block .tel-block {
    position: relative;
    padding-left: 45px;
  }
  footer .footer-site-contents .footer-contact-block .tel-block::before {
    content: "";
    display: block;
    top: 50%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 35px;
    height: 35px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='25' style='enable-background:new 0 0 26 25' xml:space='preserve'%3E%3Cpath d='M13 0C5.8 0 0 5.6 0 12.5S5.8 25 13 25s13-5.6 13-12.5S20.2 0 13 0zm5.4 15.6-.5 2.3c-.1.2-.3.4-.5.4-5.6 0-10.1-4.5-10.1-10.1 0-.2.2-.5.4-.5l2.3-.6c.2-.1.5.1.6.3l1 2.4c.1.2 0 .5-.1.6l-1.3 1.1c.8 1.7 2.2 3.1 3.8 3.8l1.1-1.3c.1-.2.4-.2.6-.2l2.4 1c.3.3.4.5.3.8z' style='fill:%23003A88'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  footer .footer-site-contents .footer-contact-block .business-info {
    position: relative;
  }
  footer .footer-site-contents .footer-contact-block .business-info .calendar-link {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  footer .footer-site-contents .footer-contact-block .business-info .calendar-link a:hover {
    background: #eff4fa;
  }
  footer .footer-site-contents .footer-contact-block .business-info .calendar-link a:hover span::before {
    left: 10px;
    opacity: 0;
  }
  footer .footer-site-contents .footer-contact-block .business-info .calendar-link a:hover span::after {
    left: 0;
    opacity: 1;
  }
  footer .footer-site-contents .footer-contact-block > ul > li {
    width: 100%;
    height: 70px;
  }
  footer .footer-site-contents .footer-contact-block > ul > li > a:hover span::before {
    left: 10px;
    opacity: 0;
  }
  footer .footer-site-contents .footer-contact-block > ul > li > a:hover span::after {
    left: -5px;
    opacity: 1;
  }
  footer .footer-site-contents .footer-contact-block > ul > li:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .footer-site-contents::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    margin: 0 calc(50% - 50vw);
    z-index: -1;
    border-bottom: solid 1px #EAEAEA;
  }
  footer .global-menu-block {
    padding: 50px 0 30px;
  }
  footer .copyright {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 80px;
  }
  .sell + footer {
    padding-bottom: 78px;
  }
  .sell + footer .pagetop-grid {
    bottom: 100px;
  }
  .fixed-menu .contact-menu > ul > li a span {
    position: relative;
    padding-left: 23px;
  }
  .fixed-menu .contact-menu > ul > li a span::before {
    content: "";
    display: block;
    top: 50%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin-right: 8px;
    transition: 0.3s;
  }
  .fixed-menu .contact-menu > ul > li a span::after {
    content: "";
    display: block;
    top: 50%;
    left: -10px;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23003A88'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: 0.3s;
  }
  .fixed-menu .contact-menu > ul > li a:hover {
    background: #EFF4FA;
  }
  .fixed-menu .contact-menu > ul > li a:hover span::before {
    left: 10px;
    opacity: 0;
  }
  .fixed-menu .contact-menu > ul > li a:hover span::after {
    left: 0;
    opacity: 1;
  }
  .fixed-menu .contact-menu > ul > li.tel, .fixed-menu .contact-menu > ul > li.reservation {
    display: none;
  }
  .fixed-menu .contact-menu > ul > li.line a span::after {
    background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%2307B53B'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .fixed-menu .contact-menu > ul > li.line a:hover {
    background: #F6FFF9;
  }
  .fixed-bottom-menu {
    display: none;
  }
  .fixed-bottom-menu.sell {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    gap: 0 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    padding: 10px 0;
    z-index: 10;
  }
  .fixed-bottom-menu.sell .tel-bottom-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
  }
  .fixed-bottom-menu.sell .tel-bottom-block > p {
    margin-right: 20px;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    font-weight: bold;
    line-height: 1.33;
  }
  .fixed-bottom-menu.sell .tel-bottom-block span {
    display: block;
    position: relative;
    margin-right: 10px;
    padding-left: 42px;
    color: #003A88;
    font-size: 3rem;
    letter-spacing: 0.03em;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    transition: 0.3s;
  }
  .fixed-bottom-menu.sell .tel-bottom-block span::before {
    content: "";
    display: block;
    top: 50%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 34px;
    height: 34px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='25' style='enable-background:new 0 0 26 25' xml:space='preserve'%3E%3Cpath d='M13 0C5.8 0 0 5.6 0 12.5S5.8 25 13 25s13-5.6 13-12.5S20.2 0 13 0zm5.4 15.6-.5 2.3c-.1.2-.3.4-.5.4-5.6 0-10.1-4.5-10.1-10.1 0-.2.2-.5.4-.5l2.3-.6c.2-.1.5.1.6.3l1 2.4c.1.2 0 .5-.1.6l-1.3 1.1c.8 1.7 2.2 3.1 3.8 3.8l1.1-1.3c.1-.2.4-.2.6-.2l2.4 1c.3.3.4.5.3.8z' style='fill:%23003A88'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s;
  }
  .fixed-bottom-menu.sell .tel-bottom-block > ul > li {
    color: #4B4B4B;
    font-size: 1rem;
    line-height: 1.4;
  }
  .fixed-bottom-menu.sell > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 10px;
  }
  .fixed-bottom-menu.sell > ul li {
    width: 230px;
    height: 58px;
  }
  .fixed-bottom-menu.sell > ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 35px;
  }
  .fixed-bottom-menu.sell > ul li a span {
    position: relative;
    padding-left: 25px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .fixed-bottom-menu.sell > ul li a span::before {
    content: "";
    display: block;
    top: 50%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: 0.3s;
  }
  .fixed-bottom-menu.sell > ul li a span::after {
    content: "";
    display: block;
    top: 52%;
    left: -20px;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 23px;
    height: 23px;
    opacity: 0;
    background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' style='enable-background:new 0 0 18 18' xml:space='preserve'%3E%3Cpath d='M9 0C4 0 0 4 0 9s4 9 9 9 9-4 9-9-4-9-9-9zm4.1 9.4-3 3c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9l2-2H5.4c-.4.1-.6-.2-.6-.5s.3-.6.6-.6h5.8l-2-2c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3 3c.2.3.2.7 0 .9z' style='fill:%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s;
  }
  .fixed-bottom-menu.sell > ul li a:hover span::before {
    left: 10px;
    opacity: 0;
  }
  .fixed-bottom-menu.sell > ul li a:hover span::after {
    left: -5px;
    opacity: 1;
  }
  .fixed-bottom-menu.sell > ul li.assessment a {
    background: #DE7737;
  }
  .fixed-bottom-menu.sell > ul li.assessment a span {
    color: #fff;
  }
  .fixed-bottom-menu.sell > ul li.assessment a span::before {
    width: 16px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .fixed-bottom-menu.sell > ul li.contact a {
    background: #DE7737;
    color: #fff;
  }
  .fixed-bottom-menu.sell > ul li.contact a span {
    color: #fff;
  }
  .fixed-bottom-menu.sell > ul li.contact a span::before {
    width: 16px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .fixed-bottom-menu.sell > ul li.contact a span .sp-text {
    display: none;
  }
  .fixed-bottom-menu.sell > ul li.contact a span i {
    font-style: normal;
  }
  .fixed-bottom-menu.sell > ul li.line a {
    background: #59B74B;
  }
  .fixed-bottom-menu.sell > ul li.line a span {
    color: #fff;
  }
  .fixed-bottom-menu.sell > ul li.line a span i {
    font-style: normal;
  }
  .fixed-bottom-menu.sell > ul li.line a span::before {
    width: 20px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.273' height='17.739'%3E%3Cpath d='M10.136 0C4.538 0 0 3.686 0 8.236a7.31 7.31 0 0 0 2.257 5.175 10.073 10.073 0 0 1-2.17 3.793.315.315 0 0 0-.059.344.31.31 0 0 0 .289.19 9.055 9.055 0 0 0 5.567-2.035 12.075 12.075 0 0 0 4.252.768c5.6 0 10.136-3.686 10.136-8.236S15.735 0 10.136 0ZM5.068 9.5a1.267 1.267 0 1 1 1.267-1.267 1.266 1.266 0 0 1-1.267 1.27Zm5.068 0A1.267 1.267 0 1 1 11.4 8.236a1.266 1.266 0 0 1-1.264 1.267Zm5.068 0a1.267 1.267 0 1 1 1.267-1.267 1.266 1.266 0 0 1-1.271 1.27Z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .fixed-bottom-menu.sell > ul li.tel {
    display: none;
  }
  .fixed-bottom-menu.sell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    margin: 0 calc(50% - 50vw);
    z-index: -1;
    background: #EFF4FA;
    opacity: 0.9;
  }
  .trigger .menu-trigger {
    transition: 0.5s ease;
  }
  .trigger:hover .menu-trigger {
    opacity: 0.6;
  }
  .hamburger-wrapper {
    min-height: 700px;
  }
  .hamburger-wrapper .header-inner {
    top: 0;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .hamburger-wrapper .hamburger-contact-menu {
    display: none;
  }
  .hamburger-wrapper .global-menu-block {
    position: relative;
    padding: 150px 0 180px;
  }
  .hamburger-wrapper .global-menu-block::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: -100px;
    width: 165px;
    height: 178px;
    background: url(../common/images/menu_decoration01.svg) center center/contain no-repeat;
  }
  .hamburger-wrapper .global-menu-block::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    right: -100px;
    width: 165px;
    height: 178px;
    background: url(../common/images/menu_decoration02.svg) center center/contain no-repeat;
  }
  .global-menu-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    width: 905px;
    margin: 0 auto;
    z-index: 1;
  }
  .global-menu-block .main-menu > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 55px;
  }
  .global-menu-block .main-menu > ul > li {
    min-width: 160px;
  }
  .global-menu-block .main-menu > ul > li > dl > dt {
    margin-bottom: 5px;
  }
  .global-menu-block .main-menu > ul > li > dl > dt a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 40px;
    padding-left: 20px;
    color: #003A88;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .global-menu-block .main-menu > ul > li > dl > dt a::before {
    content: "";
    display: block;
    top: 53%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 14px;
    height: 14px;
    background: url(../common/images/icon_menu_arrow.svg) center center/contain no-repeat;
  }
  .global-menu-block .main-menu > ul > li > dl > dt a:hover {
    opacity: 0.7;
  }
  .global-menu-block .main-menu > ul > li > dl > dd > ul > li > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    height: 20px;
    color: #4B4B4B;
    font-size: 1.3rem;
    font-weight: 500;
  }
  .global-menu-block .main-menu > ul > li > dl > dd > ul > li > a:hover {
    opacity: 0.7;
  }
  .global-menu-block .main-menu > ul > li > dl > dd > ul > li:first-child {
    display: none;
  }
  .global-menu-block .main-menu > ul > li > dl > dd > ul > li:not(:last-child) {
    margin-bottom: 5px;
  }
  .global-menu-block .main-menu > ul > li > dl > dd > ul > li.partition {
    margin-top: 20px;
  }
  .global-menu-block .main-menu > ul > li > dl:not(:last-child) {
    margin-bottom: 30px;
  }
  .global-menu-block .side-menu > ul > li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 25px;
    color: #003A88;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .global-menu-block .side-menu > ul > li a[target=_blank]:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin: 2px 0 0 6px;
    background: url(../common/images/icon_link.svg) center center/contain no-repeat;
  }
  .global-menu-block .side-menu > ul > li a.ig-link {
    padding-left: 22px;
  }
  .global-menu-block .side-menu > ul > li a.ig-link::after {
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    margin: 3px 0 0 0;
    background: url(../common/images/icon_ig.svg) center center/contain no-repeat;
  }
  .global-menu-block .side-menu > ul > li.sp-main a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #003A88;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .global-menu-block .side-menu > ul > li.sp-main a::before {
    content: "";
    display: block;
    top: 53%;
    left: 0;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 14px;
    height: 14px;
    background: url(../common/images/icon_menu_arrow.svg) center center/contain no-repeat;
  }
  .global-menu-block .side-menu > ul > li.sp-main a:hover {
    opacity: 0.7;
  }
  .global-menu-block .side-menu > ul > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .global-menu-block .side-menu > ul > li:last-child {
    margin-top: 20px;
  }
  .global-menu-block .side-menu > ul > li:last-child a {
    font-size: 1.2rem;
  }
  .fixed-check-button:hover {
    animation-play-state: paused;
  }
  .fixed-check-button:hover a {
    transform: scale(1.1);
  }
  .page-head-title.search > a:hover {
    opacity: 0.6;
  }
  .page-head-title.support_move::after {
    top: 50%;
    right: 50% !important;
    transform: translate(50vw, -50%) !important;
  }
  .student-contents-button a {
    transition: 0.3s;
  }
  .student-contents-button a:hover {
    opacity: 0.8;
  }
  .title-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 0 30px;
  }
  .title-inner .section-intro {
    flex: 1 0;
    max-width: 547px;
  }
  .partner-list-section {
    position: relative;
    gap: 0 40px;
  }
  .partner-list-section .text-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .partner-list-section .text-inner .title-block {
    flex: 1 0;
  }
  .partner-list-section .text-inner > p {
    width: 510px;
  }
  .partner-list-section .partner-list-block {
    margin-bottom: 80px;
  }
  .partner-list-section .partner-list-block > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
  }
  .partner-list-section .partner-list-block > ul > li {
    width: calc(25% - 18.75px);
  }
  .partner-list-section .partner-list-block > ul > li > span a::before, .partner-list-section .partner-list-block > ul > li > span a::after {
    transition: 0.3s;
  }
  .partner-list-section .partner-list-block > ul > li > span a:hover {
    color: #003A88;
  }
  .partner-list-section .partner-list-block > ul > li > span a:hover::before {
    width: 100%;
    border-bottom: solid 1px #003A88;
  }
  .partner-list-section .partner-list-block > ul > li > span a:hover::after {
    left: calc(100% - 7px);
    background: #003A88;
    opacity: 1;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    gap: 0 75px;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner figure {
    width: 225px;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner figure::before {
    content: "";
    display: block;
    padding-top: 94.2%;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner > dl {
    max-width: 460px;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner > dl > dd > ul {
    display: flex;
    flex-flow: wrap column;
    gap: 0 40px;
    height: 220px;
  }
  .partner-list-section .qualification-by-president .qualification-list-inner > dl > dd > ul li {
    min-width: 170px;
  }
  .column-list-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
  .column-list-block > li {
    width: calc(50% - 10px);
  }
  .column-list-block > li a figure img {
    transition: 0.3s;
  }
  .column-list-block > li a:hover {
    opacity: 0.8;
  }
  .column-list-block > li a:hover figure img {
    transform: scale(1.1);
  }
  .consulting-section {
    position: relative;
  }
  .consulting-section > p {
    text-align: center;
  }
  .consulting-section .consulting-point {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 0 40px;
  }
  .consulting-section .consulting-point > dl {
    position: relative;
    width: 240px;
  }
  .consulting-section .consulting-point > dl:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 43px;
    right: -27px;
    width: 14px;
    height: 14px;
    background: url(../common/images/icon_plus.svg) center center/contain no-repeat;
  }
  .consulting-section > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .consulting-section > ul > li {
    width: 300px;
    height: 70px;
  }
  .consulting-section > ul > li > a span::after, .consulting-section > ul > li > a span::before {
    transition: 0.3s;
  }
  .consulting-section > ul > li > a:hover span::before {
    opacity: 0;
  }
  .consulting-section > ul > li > a:hover span::after {
    left: 0;
    opacity: 1;
  }
  .consulting-section > ul > li.assessment a {
    background: #EC8B4E;
  }
  .consulting-section > ul > li.assessment a span {
    color: #fff;
  }
  .link-button a::before, .link-button a::after, .link-button button::before, .link-button button::after {
    transition: 0.3s;
  }
  .link-button a:hover, .link-button button:hover {
    background: #fff;
    border: solid 1px #003A88;
    color: #003A88;
  }
  .link-button a:hover::before, .link-button button:hover::before {
    opacity: 0;
  }
  .link-button a:hover::after, .link-button button:hover::after {
    opacity: 1;
  }
  .link-button.whitebutton {
    border: solid 1px #003a88;
    border-radius: 30px;
  }
  .link-button.whitebutton a, .link-button.whitebutton button {
    background: #fff;
    color: #003a88;
  }
  .link-button.whitebutton a:hover, .link-button.whitebutton button:hover {
    background: #003a88;
    color: #fff;
  }
  .link-button.whitebutton a:hover::before, .link-button.whitebutton button:hover::before {
    opacity: 0;
  }
  .link-button.whitebutton a:hover::after, .link-button.whitebutton button:hover::after {
    opacity: 1;
  }
  .more-loading-button a::after, .more-loading-button button::after {
    transition: 0.3s;
  }
  .more-loading-button a:hover::after, .more-loading-button button:hover::after {
    top: calc(50% + 5px);
  }
  .line-link-button {
    padding: 40px 0;
  }
  .modaal-container button.modaal-close-button:hover {
    opacity: 0.8;
  }
  .modaal-image .modaal-inner-wrapper {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .pagination > ul {
    gap: 8px;
  }
  .pagination > ul li a:hover {
    opacity: 0.6;
  }
  .pagination > span a:hover {
    opacity: 0.6;
  }
  .column-link-button-block > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 2px;
  }
  .column-link-button-block > ul > li {
    flex: 1 0;
  }
  .column-link-button-block > ul > li > a {
    overflow: hidden;
  }
  .column-link-button-block > ul > li > a::before, .column-link-button-block > ul > li > a::after {
    transition: 0.3s;
  }
  .column-link-button-block > ul > li > a:hover::before {
    transform: scale(1.1);
  }
  .column-link-button-block > ul > li > a:hover::after {
    transform: translateX(10px);
  }
  .c-contact-section .contact-wrap .tel-block .tel-tap a {
    pointer-events: none;
  }
  .c-contact-section .contact-wrap .tel-block .calendar-link {
    margin-top: 10px;
  }
  .c-contact-section .contact-wrap .contact-link-btn .link-btn a:hover span::before {
    left: 10px;
    opacity: 0;
  }
  .c-contact-section .contact-wrap .contact-link-btn .link-btn a:hover span::after {
    left: -5px;
    opacity: 1;
  }
}
@media screen and (max-width: 599px) {
  /* ------------------------------------------------------*/
  .fixed-bottom-menu .tel-bottom-block {
    display: none;
  }
  .fixed-bottom-menu ul li.contact.orange a {
    background: #DE7737;
  }
  .fixed-bottom-menu ul li.contact a {
    -webkit-box-align: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    padding-left: 35px;
    background: #003A88;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .fixed-bottom-menu ul li.contact a span {
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: 500;
  }
  .fixed-bottom-menu ul li.contact a::before {
    content: "";
    display: block;
    top: 50%;
    left: 10px;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 24px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .fixed-bottom-menu ul li.assessment a {
    -webkit-box-align: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    padding-left: 35px;
    background: #EC8B4E;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.14;
    font-weight: bold;
  }
  .fixed-bottom-menu ul li.assessment a::before {
    content: "";
    display: block;
    top: 50%;
    left: 10px;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 24px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .partner-list-section .partner-list-block > ul > li {
    width: calc(50% - 8px);
  }
  .partner-list-section .partner-list-block > ul > li .partner-card {
    height: 60vw;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  /* ------------------------------------------------------*/
  .fixed-bottom-menu .tel-bottom-block {
    display: none;
  }
  .fixed-bottom-menu ul li.contact a {
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    background: #003A88;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .fixed-bottom-menu ul li.contact a::before {
    content: "";
    display: block;
    width: 24px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .fixed-bottom-menu ul li.assessment a {
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    background: #EC8B4E;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.14;
    font-weight: bold;
  }
  .fixed-bottom-menu ul li.assessment a::before {
    content: "";
    display: block;
    width: 24px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.484' height='10.863'%3E%3Cpath d='M14.209 3.587a.17.17 0 0 1 .274.133V9.5a1.358 1.358 0 0 1-1.358 1.358H1.358A1.358 1.358 0 0 1 0 9.5V3.723a.169.169 0 0 1 .274-.133c.634.492 1.474 1.117 4.359 3.214.6.436 1.6 1.352 2.608 1.347s2.037-.928 2.611-1.347c2.886-2.097 3.724-2.725 4.357-3.217ZM7.242 7.242c.656.011 1.6-.826 2.076-1.171 3.754-2.724 4.04-2.962 4.905-3.641a.677.677 0 0 0 .26-.535v-.537A1.358 1.358 0 0 0 13.126 0H1.358A1.358 1.358 0 0 0 0 1.358V1.9a.681.681 0 0 0 .26.535c.866.676 1.151.917 4.905 3.641.476.34 1.421 1.177 2.077 1.166Z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .partner-list-section .partner-list-block > ul > li {
    width: calc(33.3333333333% - 12px);
  }
  .partner-list-section .partner-list-block > ul > li .partner-card {
    height: 40vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  /* ------------------------------------------------------*/
  .column-link-button-block > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 2px;
  }
  .column-link-button-block > ul > li {
    flex: 1 0;
  }
  .column-link-button-block > ul > li a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  /* ------------------------------------------------------*/
  .column-link-button-block > ul > li {
    height: 53vw;
    max-height: 290px;
  }
  .column-link-button-block > ul > li > a {
    font-size: 2rem;
  }
  .column-link-button-block > ul > li > a::after {
    top: 50%;
    right: 15px;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 14px;
    height: 12px;
  }
  .column-link-button-block > ul > li:not(:last-child) {
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  /* ------------------------------------------------------*/
  .header-inner {
    padding: 0 340px 0 10px;
  }
  .header-inner .site-logo a {
    margin: 0 0 10px 5px;
  }
  .header-inner .site-logo a img {
    width: 275px;
  }
  .header-inner .site-logo > h1, .header-inner .site-logo > p {
    letter-spacing: 0.05em;
  }
  .fixed-menu {
    top: 40px;
    right: 10px;
  }
  .fixed-menu .contact-menu > ul > li {
    width: 125px;
  }
  .fixed-menu .contact-menu > ul > li a span {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  /* ------------------------------------------------------*/
  .header-inner {
    padding: 0 435px 0 40px;
  }
  .header-inner .site-logo a {
    margin: 0 0 10px 5px;
  }
  .fixed-menu {
    top: 40px;
    right: calc(50% - 550px);
  }
}
@media screen and (min-width: 960px) and (max-width: 1250px) {
  .hamburger-wrapper .global-menu-block::before {
    left: 50%;
    transform: translateX(-50vw);
  }
  .hamburger-wrapper .global-menu-block::after {
    right: 50%;
    transform: translateX(50vw);
  }
  .page-head-title::after {
    right: 50% !important;
    transform: translate(50vw, -50%) !important;
  }
}
.ofi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  font-family: "object-fit:cover;object-position:center center;";
}

/* layout
-------------------------------------------------------*/
.container {
  padding: 0;
}

/* TOP
-------------------------------------------------------*/
.page-head-title.top {
  margin-bottom: 40px;
}
.page-head-title.top::after {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  right: -110px;
  width: 132px;
  height: 152px;
  background: url(../residents/images/top_right.svg) center center/contain no-repeat;
}

.residents-link-wrap {
  position: relative;
  padding-bottom: 80px;
}
.residents-link-wrap ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  transition: 0.5s ease;
  position: relative;
  height: 100%;
  border-radius: 6px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
}
.residents-link-wrap ul li a::before {
  content: "";
  display: block;
  position: relative;
  width: 83px;
  height: 66px;
}
.residents-link-wrap ul li a::after {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 9px;
}
.residents-link-wrap ul li a:hover {
  opacity: 0.7;
}
.residents-link-wrap ul li a p {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.residents-link-wrap ul li a .small-txt {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.residents-link-wrap ul li:nth-child(1) a {
  border: 2px solid #A8C0E1;
}
.residents-link-wrap ul li:nth-child(1) a::before {
  background: url(../residents/images/residents_link_icon1.svg) center center/contain no-repeat;
}
.residents-link-wrap ul li:nth-child(1) a::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23A8C0E1'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.residents-link-wrap ul li:nth-child(2) a {
  border: 2px solid #E0B4BE;
}
.residents-link-wrap ul li:nth-child(2) a::before {
  background: url(../residents/images/residents_link_icon2.svg) center center/contain no-repeat;
}
.residents-link-wrap ul li:nth-child(2) a::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23E0B4BE'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.residents-link-wrap ul li:nth-child(3) a {
  border: 2px solid #E9D37D;
}
.residents-link-wrap ul li:nth-child(3) a::before {
  background: url(../residents/images/residents_link_icon3.svg) center center/contain no-repeat;
}
.residents-link-wrap ul li:nth-child(3) a::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23E9D37D'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.residents-link-wrap ul li:nth-child(4) a {
  border: 2px solid #9CE1E1;
}
.residents-link-wrap ul li:nth-child(4) a::before {
  background: url(../residents/images/residents_link_icon4.svg) center center/contain no-repeat;
}
.residents-link-wrap ul li:nth-child(4) a::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%239CE1E1'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.residents-link-wrap ul li:nth-child(5) a {
  border: 2px solid #DFC1AE;
}
.residents-link-wrap ul li:nth-child(5) a::before {
  background: url(../residents/images/residents_link_icon5.svg) center center/contain no-repeat;
}
.residents-link-wrap ul li:nth-child(5) a::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23DFC1AE'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.residents-link-wrap ul li:nth-child(6) a {
  border: 2px solid #B8D6B3;
}
.residents-link-wrap ul li:nth-child(6) a::before {
  background: url(../residents/images/residents_link_icon6.svg) center center/contain no-repeat;
}
.residents-link-wrap ul li:nth-child(6) a::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23B8D6B3'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.residents-link-wrap ul li:nth-child(7) a {
  border: 2px solid #C5AEDF;
}
.residents-link-wrap ul li:nth-child(7) a::before {
  background: url(../residents/images/residents_link_icon7.svg) center center/contain no-repeat;
}
.residents-link-wrap ul li:nth-child(7) a::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23C5AEDF'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.frozen-link-wrap {
  position: relative;
  padding: 40px 0;
}
.frozen-link-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #F7F9FC;
}
.frozen-link-wrap .frozen-link-btn {
  width: calc((100% - 60px) / 3);
  height: 65px;
  margin: 0 auto;
}
.frozen-link-wrap .frozen-link-btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.5s ease;
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 2px solid #A8C0E1;
  border-radius: 6px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.frozen-link-wrap .frozen-link-btn a::after {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23A8C0E1'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 9px;
}

.pdf-link-wrap {
  position: relative;
  margin-bottom: 80px;
  padding: 80px 0;
}
.pdf-link-wrap > p {
  margin-bottom: 25px;
  color: #003A88;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.3;
}
.pdf-link-wrap > ul > li > a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
}
.pdf-link-wrap > ul > li > a > dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  min-height: 105px;
  background: #fff;
}
.pdf-link-wrap > ul > li > a > dl > dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 0 8px;
  margin-bottom: 8px;
  color: #003A88;
  font-size: 1.8rem;
  font-weight: bold;
}
.pdf-link-wrap > ul > li > a > dl > dt::before {
  content: "";
  display: block;
}
.pdf-link-wrap > ul > li > a > dl > dd {
  color: #4B4B4B;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.pdf-link-wrap > ul > li > a span {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  background: #003A88;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}
.pdf-link-wrap > ul > li > a span::after {
  content: "";
  display: block;
  top: 50%;
  right: 25px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 10px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.866' height='14.457'%3E%3Cpath d='m10.489 14.104 6.024-6.024a1.2 1.2 0 0 0 0-1.7L10.489.353a1.202 1.202 0 0 0-1.7 1.7l3.967 3.967H1.201a1.204 1.204 0 0 0 0 2.409h11.552l-3.967 3.967a1.202 1.202 0 0 0 1.7 1.7Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.pdf-link-wrap > ul > li.connection a > dl > dt::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.2' height='17.2'%3E%3Cpath d='M11.8,8.6c0,0.7,0,1.4-0.1,2.2H5.5C5.4,10,5.4,9.3,5.4,8.6c0-0.7,0-1.4,0.1-2.2h6.2C11.8,7.2,11.8,7.9,11.8,8.6z M12.8,6.5h4.1c0.4,1.4,0.4,2.9,0,4.3h-4.1c0.1-0.7,0.1-1.4,0.1-2.2C12.9,7.9,12.9,7.2,12.8,6.5z M16.6,5.4h-3.9c-0.2-1.8-0.9-3.6-1.9-5.1C13.4,1,15.6,2.9,16.6,5.4L16.6,5.4z M11.6,5.4H5.6c0.2-1.1,0.5-2.2,0.9-3.2C6.8,1.6,7.2,1,7.7,0.5C7.9,0.2,8.2,0,8.6,0C9,0,9.3,0.2,9.5,0.5C10,1,10.4,1.6,10.7,2.2C11.1,3.2,11.4,4.3,11.6,5.4L11.6,5.4z M4.5,5.4H0.6c1-2.5,3.2-4.4,5.8-5.1C5.4,1.8,4.8,3.6,4.5,5.4L4.5,5.4z M0.3,6.5h4.1c-0.1,1.4-0.1,2.9,0,4.3H0.3C-0.1,9.3-0.1,7.9,0.3,6.5z M6.5,15c-0.4-1-0.7-2.1-0.9-3.2h5.9c-0.2,1.1-0.5,2.2-0.9,3.2c-0.3,0.6-0.6,1.2-1.1,1.7C9.3,17,9,17.2,8.6,17.2c-0.4,0-0.7-0.2-0.9-0.5C7.2,16.2,6.8,15.7,6.5,15L6.5,15z M4.5,11.8c0.2,1.8,0.9,3.6,1.9,5.1c-2.6-0.7-4.8-2.6-5.8-5.1H4.5z M16.6,11.8c-1,2.5-3.2,4.4-5.8,5.1c1-1.5,1.6-3.3,1.9-5.1H16.6z' fill='%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
}
.pdf-link-wrap > ul > li.net a > dl > dt::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='15.4'%3E%3Cpath d='M21.825 4.224a15.983 15.983 0 0 0-21.65 0 .546.546 0 0 0-.012.79L1.34 6.182a.558.558 0 0 0 .77.013 13.189 13.189 0 0 1 17.78 0 .559.559 0 0 0 .77-.013l1.177-1.168a.547.547 0 0 0-.012-.79ZM11 11a2.2 2.2 0 1 0 2.2 2.2A2.2 2.2 0 0 0 11 11Zm6.967-2.873a10.553 10.553 0 0 0-13.934 0 .543.543 0 0 0-.02.8L5.2 10.091a.561.561 0 0 0 .758.028 7.742 7.742 0 0 1 10.089 0 .561.561 0 0 0 .758-.028l1.184-1.168a.543.543 0 0 0-.022-.796Z' fill='%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 12px;
}
.pdf-link-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #E1EBF8;
}
.pdf-link-wrap span {
  position: relative;
  display: block;
  height: 60px;
}
.pdf-link-wrap span a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.5s ease;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 35px 0 45px;
  background: #003A88;
  border-radius: 3px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
}
.pdf-link-wrap span a::before {
  content: "";
  display: block;
  position: relative;
  left: 0;
  margin-right: 10px;
}
.pdf-link-wrap span a:hover {
  opacity: 0.7;
}

.qa-wrap {
  margin-bottom: 80px;
}
.qa-wrap .c-section-title {
  margin-bottom: 35px;
}
.qa-wrap .qa-list ul li:not(:last-child) {
  margin-bottom: 60px;
}
.qa-wrap .qa-list ul li dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  padding: 10px 25px;
  background: #E1EBF8;
  border-radius: 6px;
  color: #1D1D1D;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  flex-wrap: nowrap;
}
.qa-wrap .qa-list ul li dl dt::before {
  content: "Q";
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: 10px;
  color: #A8C0E1;
  font-family: "Roboto", sans-serif;
  font-size: 4.1rem;
  font-weight: 700;
}
.qa-wrap .qa-list ul li dl dd {
  padding: 0 20px;
}
.qa-wrap .qa-list ul li dl dd p {
  color: #4B4B4B;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.qa-wrap .qa-list ul li dl dd p a {
  color: #003A88;
  text-decoration: underline;
}
.qa-wrap .qa-list ul li dl dd p:not(:last-child) {
  margin-bottom: 20px;
}
.qa-wrap .qa-list ul li dl dd .link-list span {
  position: relative;
  display: block;
}
.qa-wrap .qa-list ul li dl dd .link-list span:not(:last-child) {
  margin-bottom: 5px;
}
.qa-wrap .qa-list ul li dl dd .link-list span a {
  transition: 0.5s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  border-bottom: 1px solid #003A88;
  color: #003A88;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.qa-wrap .qa-list ul li dl dd .link-list span a::before {
  width: 4px;
  height: 4px;
  border-top: 1px solid #003A88;
  border-right: 1px solid #003A88;
  -webkit-transform: translate(0%, 0%) rotate(45deg);
  transform: translate(0%, 0%) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
}
.qa-wrap .qa-list ul li dl dd .link-list:not(:last-child) {
  margin-bottom: 20px;
}

.live-column-wrap {
  position: relative;
  padding: 80px 0;
}
.live-column-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #F7F9FC;
}
.live-column-wrap h2,
.live-column-wrap h3 {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.live-column-wrap h2 span,
.live-column-wrap h3 span {
  display: block;
  margin-bottom: 10px;
  color: #003A88;
  font-size: 1.6rem;
  letter-spacing: 0;
}

/* 蛹鈴匣螟ｧ蟄ｦ逡吝ｭｦ逕溘・蛟滉ｸｻ縺輔ｓ縺ｸ
-------------------------------------------------------*/
.page-head-title.subordinate {
  margin-bottom: 65px;
}

.international-notification {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 100px;
}
.international-notification table {
  width: 100%;
  margin-bottom: 80px;
}
.international-notification table tr {
  height: 60px;
}
.international-notification table tr th {
  color: #003A88;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
}
.international-notification table tr td {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.international-notification table tr td a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.5s ease;
  position: relative;
  width: 120px;
  height: 30px;
  border: 1px solid #003A88;
  border-radius: 4px;
  color: #003A88;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0;
}
.international-notification table tr td a::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.3' height='10.4'%3E%3Cpath d='M5.2,0H1C0.5,0,0,0.5,0,1l0,8.3c0,0.6,0.5,1,1,1h6.2c0.6,0,1-0.5,1-1V3.1L5.2,0z M6.2,8.3H2.1v-1h4.2V8.3z M6.2,6.2H2.1v-1h4.2V6.2z M4.7,3.6V0.8l2.9,2.9L4.7,3.6z' fill='%23003A88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: relative;
  width: 9px;
  height: 11px;
  margin-right: 5px;
}
.international-notification > p {
  margin-bottom: 50px;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.03em;
}
.international-notification .top-link-btn {
  display: block;
  width: 280px;
  height: 60px;
  margin: 0 auto;
}
.international-notification .top-link-btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.5s ease;
  height: 100%;
  border: 1px solid #AFAFAF;
  border-radius: 30px;
  color: #4B4B4B;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
}

/* IT驥崎ｪｬ
-------------------------------------------------------*/
.page-head-title.it-jusetsu {
  margin-bottom: 40px;
}

.it-jusetsu-desc {
  margin-bottom: 50px;
}
.it-jusetsu-desc p {
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.6;
}

.it-jusetsu-desc-wrap {
  margin-bottom: 80px;
}
.it-jusetsu-desc-wrap .c-section-title {
  margin-bottom: 35px;
}
.it-jusetsu-desc-wrap .c-section-title h2, .it-jusetsu-desc-wrap .c-section-title h3 {
  display: block;
}
.it-jusetsu-desc-wrap .c-section-title h2 span, .it-jusetsu-desc-wrap .c-section-title h3 span {
  display: block;
  color: #003A88;
  font-size: 1.6rem;
  line-height: 1.5;
}
.it-jusetsu-desc-wrap .point-contents {
  margin-bottom: 50px;
}
.it-jusetsu-desc-wrap .point-contents ul {
  counter-reset: count-number;
}
.it-jusetsu-desc-wrap .point-contents ul li {
  position: relative;
  background: #F7F9FC;
  border-radius: 6px;
}
.it-jusetsu-desc-wrap .point-contents ul li::after {
  content: "";
  display: block;
  position: absolute;
}
.it-jusetsu-desc-wrap .point-contents ul li:nth-child(1)::after {
  bottom: 45px;
  right: clamp(12px, 1.2vw, 23px);
  width: 72px;
  height: 80px;
  background: url(../residents/it-jusetsu/images/point1_img.svg) center center/contain no-repeat;
}
.it-jusetsu-desc-wrap .point-contents ul li:nth-child(2)::after {
  bottom: 35px;
  right: clamp(24px, 2.45vw, 47px);
  width: 32px;
  height: 107px;
  background: url(../residents/it-jusetsu/images/point2_img.svg) center center/contain no-repeat;
}
.it-jusetsu-desc-wrap .point-contents ul li h3,
.it-jusetsu-desc-wrap .point-contents ul li h4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 15px;
  color: #003A88;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
  flex-wrap: nowrap;
}
.it-jusetsu-desc-wrap .point-contents ul li h3 span,
.it-jusetsu-desc-wrap .point-contents ul li h4 span {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  background: #003A88;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.5;
  flex-direction: column;
}
.it-jusetsu-desc-wrap .point-contents ul li h3 span::after,
.it-jusetsu-desc-wrap .point-contents ul li h4 span::after {
  counter-increment: count-number;
  content: counter(count-number) " ";
  display: block;
  font-size: 1.3rem;
}
.it-jusetsu-desc-wrap .point-contents ul li p {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.it-jusetsu-desc-wrap .recommend-contents p {
  margin-bottom: 20px;
  color: #003A88;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
.it-jusetsu-desc-wrap .recommend-contents p span.large-1 {
  font-size: 2rem;
}
.it-jusetsu-desc-wrap .recommend-contents p span.large-2 {
  font-size: 1.6rem;
}
.it-jusetsu-desc-wrap .recommend-contents ul li {
  position: relative;
  padding: 30px 20px;
  background: #F7F9FC;
  border-radius: 6px;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.4;
}
.it-jusetsu-desc-wrap .recommend-contents ul li::after {
  position: absolute;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 97px;
}
.it-jusetsu-desc-wrap .recommend-contents ul li:nth-child(1)::after {
  width: 66px;
  background: url(../residents/it-jusetsu/images/recommend_img1.svg) center center/contain no-repeat;
}
.it-jusetsu-desc-wrap .recommend-contents ul li:nth-child(2)::after {
  width: 78px;
  background: url(../residents/it-jusetsu/images/recommend_img2.svg) center center/contain no-repeat;
}
.it-jusetsu-desc-wrap .recommend-contents ul li:nth-child(3)::after {
  width: 51px;
  background: url(../residents/it-jusetsu/images/recommend_img3.svg) center center/contain no-repeat;
}

.it-jusetsu-flow-wrap {
  margin-bottom: 100px;
}
.it-jusetsu-flow-wrap .c-section-title {
  margin-bottom: 35px;
}
.it-jusetsu-flow-wrap > ul > li {
  position: relative;
  padding: 40px 40px 45px 95px;
  border: 1px solid #A8C0E1;
  border-radius: 6px;
}
.it-jusetsu-flow-wrap > ul > li:before {
  content: "";
  display: block;
  position: relative;
  width: 181px;
  height: 167px;
  margin-right: 60px;
}
.it-jusetsu-flow-wrap > ul > li:not(:last-child) {
  margin-bottom: 20px;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(1)::before {
  background: url(../residents/it-jusetsu/images/flow_img1.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(1) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(1) .flow-contents h4 span::after {
  content: "1";
}
.it-jusetsu-flow-wrap > ul > li:nth-child(2)::before {
  background: url(../residents/it-jusetsu/images/flow_img2.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(2) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(2) .flow-contents h4 span::after {
  content: "2";
}
.it-jusetsu-flow-wrap > ul > li:nth-child(3)::before {
  background: url(../residents/it-jusetsu/images/flow_img3.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(3) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(3) .flow-contents h4 span::after {
  content: "3";
}
.it-jusetsu-flow-wrap > ul > li:nth-child(4)::before {
  background: url(../residents/it-jusetsu/images/flow_img4.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(4) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(4) .flow-contents h4 span::after {
  content: "4";
}
.it-jusetsu-flow-wrap > ul > li:nth-child(5)::before {
  background: url(../residents/it-jusetsu/images/flow_img5.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(5) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(5) .flow-contents h4 span::after {
  content: "5";
}
.it-jusetsu-flow-wrap > ul > li:nth-child(6)::before {
  background: url(../residents/it-jusetsu/images/flow_img6.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(6) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(6) .flow-contents h4 span::after {
  content: "6";
}
.it-jusetsu-flow-wrap > ul > li:nth-child(7)::before {
  background: url(../residents/it-jusetsu/images/flow_img7.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(7) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(7) .flow-contents h4 span::after {
  content: "7";
}
.it-jusetsu-flow-wrap > ul > li:nth-child(8)::before {
  background: url(../residents/it-jusetsu/images/flow_img8.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(8) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(8) .flow-contents h4 span::after {
  content: "8";
}
.it-jusetsu-flow-wrap > ul > li:nth-child(9)::before {
  background: url(../residents/it-jusetsu/images/flow_img9.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(9) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(9) .flow-contents h4 span::after {
  content: "9";
}
.it-jusetsu-flow-wrap > ul > li:nth-child(10)::before {
  background: url(../residents/it-jusetsu/images/flow_img10.svg) center center/contain no-repeat;
}
.it-jusetsu-flow-wrap > ul > li:nth-child(10) .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li:nth-child(10) .flow-contents h4 span::after {
  content: "10";
}
.it-jusetsu-flow-wrap > ul > li .flow-contents {
  -webkit-flex: 1;
  flex: 1;
}
.it-jusetsu-flow-wrap > ul > li .flow-contents h3,
.it-jusetsu-flow-wrap > ul > li .flow-contents h4 {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
}
.it-jusetsu-flow-wrap > ul > li .flow-contents h3 span,
.it-jusetsu-flow-wrap > ul > li .flow-contents h4 span {
  position: relative;
  margin-right: 15px;
  border-bottom: 1px solid #003A88;
  color: #003A88;
  font-size: 1.3rem;
  font-weight: 500;
}
.it-jusetsu-flow-wrap > ul > li .flow-contents h3 span::after,
.it-jusetsu-flow-wrap > ul > li .flow-contents h4 span::after {
  display: inline-block;
  position: relative;
  padding-left: 3px;
  font-size: 2rem;
}
.it-jusetsu-flow-wrap > ul > li .flow-contents p {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D3DFF0;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.5;
}
.it-jusetsu-flow-wrap > ul > li .flow-contents .annotation-list ul li {
  position: relative;
  padding-left: 16px;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.it-jusetsu-flow-wrap > ul > li .flow-contents .annotation-list ul li::before {
  content: "※";
  display: block;
  position: absolute;
  left: 0;
  color: #003A88;
}
.it-jusetsu-flow-wrap > ul > li .flow-contents .annotation-list ul li:not(:last-child) {
  margin-bottom: 5px;
}

/* 繝ｩ繧ｯ繧ｹ繝・-------------------------------------------------------*/
.rakusute-mv {
  position: relative;
  margin-bottom: 50px;
}
.rakusute-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #D31176;
}
.rakusute-mv figure {
  position: relative;
  width: 100%;
}
.rakusute-mv figure::before {
  content: "";
  display: block;
  padding-top: 45%;
}
.rakusute-mv figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rakusute-desc-wrap {
  margin-bottom: 120px;
}
.rakusute-desc-wrap h1 {
  margin-bottom: 45px;
  color: #D31176;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0;
}
.rakusute-desc-wrap p {
  margin-bottom: 85px;
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0;
}
.rakusute-desc-wrap figure {
  position: relative;
  width: 100%;
}
.rakusute-desc-wrap figure::before {
  content: "";
  display: block;
  padding-top: 35.18%;
}
.rakusute-desc-wrap figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rakusute-use-flow {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 105px;
}
.rakusute-use-flow h2 {
  position: relative;
  padding-bottom: 20px;
  color: #D31176;
  font-size: 3.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}
.rakusute-use-flow h2::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -31px;
  left: -42px;
  width: 131px;
  height: 211px;
  background: url(../residents/rakusute/images/rakusute_flow_chara1.svg) center center/contain no-repeat;
  z-index: 1;
}
.rakusute-use-flow h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 97px;
  right: -42px;
  width: 107px;
  height: 91px;
  background: url(../residents/rakusute/images/rakusute_flow_chara2.svg) center center/contain no-repeat;
}
.rakusute-use-flow h2 img {
  display: block;
  width: 548px;
  margin: 0 auto 10px;
}
.rakusute-use-flow ul li {
  position: relative;
  padding: 25px 0;
  border: 1px solid #D31176;
}
.rakusute-use-flow ul li:not(:last-child) {
  margin-bottom: 60px;
}
.rakusute-use-flow ul li:not(:last-child)::after {
  position: absolute;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "";
  display: block;
  top: calc(100% + 10px);
  left: 50%;
  width: 37px;
  height: 39px;
  background: url(../residents/rakusute/images/rakusute_arrow.svg) center center/contain no-repeat;
}
.rakusute-use-flow ul li:has(> a) {
  padding: 0;
}
.rakusute-use-flow ul li:has(> a) > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 0;
}
.rakusute-use-flow ul li p {
  margin-bottom: 10px;
  color: #D31176;
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
}
.rakusute-use-flow ul li .tel-txt {
  width: 376px;
  margin: 0 auto 20px;
}
.rakusute-use-flow ul li span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.9;
}

.rakusute-tel-link {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 120px;
}
.rakusute-tel-link::after {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  right: -33px;
  width: 202px;
  height: 202px;
  background: url(../residents/rakusute/images/tel_link_img_estimate.svg) center center/contain no-repeat;
}
.rakusute-tel-link a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.rakusute-tel-link a::before {
  content: "";
  display: block;
  padding-top: 26.35%;
}
.rakusute-tel-link a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rakusute-value-wrap {
  margin-bottom: 120px;
}
.rakusute-value-wrap figure {
  position: relative;
  width: 100%;
}
.rakusute-value-wrap figure::before {
  content: "";
  display: block;
  padding-top: 41.3%;
}
.rakusute-value-wrap figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rakusute-point-wrap {
  margin-bottom: 80px;
}
.rakusute-point-wrap > figure {
  width: 631px;
  margin: 0 auto 10px;
}
.rakusute-point-wrap .point-contents ul {
  counter-reset: count-number;
}
.rakusute-point-wrap .point-contents ul li:nth-child(1) .point-contents-wrap::before {
  width: 68px;
  height: 66px;
  background: url(../residents/rakusute/images/point1_bird.svg) center center/contain no-repeat;
}
.rakusute-point-wrap .point-contents ul li:nth-child(2) .point-contents-wrap::before {
  width: 80px;
  height: 66px;
  background: url(../residents/rakusute/images/point2_bird.svg) center center/contain no-repeat;
}
.rakusute-point-wrap .point-contents ul li:nth-child(3) .point-contents-wrap::before {
  width: 68px;
  height: 66px;
  background: url(../residents/rakusute/images/point3_bird.svg) center center/contain no-repeat;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap {
  position: relative;
  padding: 40px clamp(15px, 1.3vw, 25px) 30px;
  margin-bottom: 55px;
  border: 6px solid #D31176;
  border-radius: 40px;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap::before {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  top: 0;
  left: 50%;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap::after {
  position: absolute;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  content: "";
  display: block;
  top: calc(100% + 21px);
  left: 50%;
  width: 37px;
  height: 39px;
  background: url(../residents/rakusute/images/rakusute_arrow.svg) center center/contain no-repeat;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title {
  margin-bottom: 20px;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title > span {
  position: relative;
  display: block;
  margin-bottom: 25px;
  color: #C30064;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title > span::after {
  counter-increment: count-number;
  content: counter(count-number);
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title p {
  position: relative;
  color: #D31176;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 1.3;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title p span.center-txt {
  position: absolute;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 5px;
  left: 50%;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title p span.bold {
  font-size: 8.4rem;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title p span.right {
  position: absolute;
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  top: 50px;
  right: 0;
  right: calc(50% - 70px);
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-desc p {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-desc span {
  display: block;
  position: relative;
  margin-top: 5px;
  padding-left: 15px;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  line-height: 1.4;
}
.rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-desc span::before {
  content: "※";
  display: block;
  position: absolute;
  left: 0;
}
.rakusute-point-wrap .point-contents ul li figure img {
  object-fit: contain;
}
.rakusute-point-wrap .point-contents .purchase-list .purchase-list-img:nth-child(1) figure::before {
  content: "";
  display: block;
  padding-top: 50.87%;
}
.rakusute-point-wrap .point-contents .purchase-list .purchase-list-img:nth-child(2) figure::before {
  content: "";
  display: block;
  padding-top: 56.78%;
}
.rakusute-point-wrap .point-contents .purchase-list .purchase-list-img:nth-child(3) figure::before {
  content: "";
  display: block;
  padding-top: 65.29%;
}
.rakusute-point-wrap .point-contents .purchase-list .purchase-list-img figure {
  position: relative;
  width: 100%;
}
.rakusute-point-wrap .point-contents .purchase-list .purchase-list-img figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rakusute-price-information-wrap {
  margin-bottom: 160px;
}
.rakusute-price-information-wrap figure {
  position: relative;
  width: 100%;
}
.rakusute-price-information-wrap figure::before {
  content: "";
  display: block;
  padding-top: 22.8%;
}
.rakusute-price-information-wrap figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rakusute-price-information-wrap .rakusute-price-information-tel {
  height: 50px;
  background: #D31176;
}
.rakusute-price-information-wrap .rakusute-price-information-tel a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.rakusute-price-information-wrap .rakusute-price-information-tel a .tel-catch {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.rakusute-price-information-wrap .rakusute-price-information-tel a .tel-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  color: #fff;
  font-size: 4rem;
  letter-spacing: 0.05em;
}
.rakusute-price-information-wrap .rakusute-price-information-tel a .tel-txt::before {
  content: "";
  display: block;
  position: relative;
  width: 50px;
  height: 30px;
  margin-right: 10px;
  background: url(../residents/rakusute/images/icon_tel_before.svg) center center/contain no-repeat;
}
.rakusute-price-information-wrap .rakusute-price-information-tel a span {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

/* 蜃咲ｵ仙ｯｾ遲悶・繝ｼ繧ｸ
-------------------------------------------------------*/
.frozen-desc-wrap {
  margin-bottom: 50px;
}
.frozen-desc-wrap .desc-txt-wrap ul {
  margin-bottom: 30px;
}
.frozen-desc-wrap .desc-txt-wrap ul li {
  position: relative;
  padding-left: 16px;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.frozen-desc-wrap .desc-txt-wrap ul li::before {
  content: "繝ｻ";
  display: block;
  position: absolute;
  left: 0;
  color: #003A88;
}
.frozen-desc-wrap .desc-txt-wrap .frozen-txt {
  position: relative;
  padding: 25px;
  background: #F7F9FC;
  border-radius: 6px;
}
.frozen-desc-wrap .desc-txt-wrap .frozen-txt::after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: 50px;
  width: 125px;
  height: 86px;
  background: url(../residents/frozen/images/frozen_crystal.png) center center/contain no-repeat;
}
.frozen-desc-wrap .desc-txt-wrap .frozen-txt p {
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.9;
}
.frozen-desc-wrap .desc-txt-wrap .frozen-txt p span {
  color: #003A88;
  font-size: 1.8rem;
  font-weight: 700;
}

.frozen-point-wrap {
  margin-bottom: 80px;
}
.frozen-point-wrap .frozen-point-list ul {
  counter-reset: count-number;
}
.frozen-point-wrap .frozen-point-list ul li {
  padding: 40px 45px;
  background: #F7F9FC;
  border: 1px solid #A8C0E1;
  border-radius: 6px;
}
.frozen-point-wrap .frozen-point-list ul li:not(:last-child) {
  margin-bottom: 35px;
}
.frozen-point-wrap .frozen-point-list ul li:nth-child(1) .point-list-img figure img {
  width: 161px;
}
.frozen-point-wrap .frozen-point-list ul li:nth-child(2) .point-list-img figure img {
  width: 215px;
}
.frozen-point-wrap .frozen-point-list ul li:nth-child(3) .point-list-img figure img {
  width: 247px;
}
.frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
  flex-wrap: nowrap;
}
.frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dt span {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  background: #003A88;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  flex-direction: column;
}
.frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dt span::after {
  counter-increment: count-number;
  content: counter(count-number);
  position: relative;
  font-size: 1.8rem;
}
.frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dt p {
  position: relative;
  color: #003A88;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dd {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.5;
}

.frozen-pipe-wrap {
  margin-bottom: 120px;
}
.frozen-pipe-wrap .frozen-pipe-list > p {
  margin-bottom: 45px;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.frozen-pipe-wrap .frozen-pipe-list ul {
  counter-reset: count-number;
}
.frozen-pipe-wrap .frozen-pipe-list ul li {
  position: relative;
  padding: 40px 45px;
  background: #F7F9FC;
  border-radius: 6px;
}
.frozen-pipe-wrap .frozen-pipe-list ul li:not(:last-child) {
  margin-bottom: 20px;
}
.frozen-pipe-wrap .frozen-pipe-list ul li:nth-child(1)::after {
  position: absolute;
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 50px;
  width: 125px;
  height: 86px;
  background: url(../residents/frozen/images/frozen_crystal.png) center center/contain no-repeat;
}
.frozen-pipe-wrap .frozen-pipe-list ul li:nth-child(1) .pipe-list-img figure img {
  width: 195px;
}
.frozen-pipe-wrap .frozen-pipe-list ul li:nth-child(2) .pipe-list-img figure img {
  width: 213px;
}
.frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-txt dl dt {
  position: relative;
  margin-bottom: 20px;
  padding-left: 25px;
  color: #003A88;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-txt dl dt::before {
  counter-increment: count-number;
  content: counter(count-number) ".";
  display: block;
  position: absolute;
  top: -3px;
  left: 0;
  font-size: 2.2rem;
  font-weight: 700;
}
.frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-txt dl dd {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.5;
}

/* 螳牙ｿ・・螻・し繝昴・繝医・繝ｼ繧ｸ
-------------------------------------------------------*/
.support-move-top-txt {
  margin-bottom: 50px;
}
.support-move-top-txt p {
  margin-bottom: 30px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.support-move-top-txt ul {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #A90F34;
  border-radius: 6px;
}
.support-move-top-txt ul li {
  position: relative;
  padding-left: 16px;
  color: #CE1141;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.support-move-top-txt ul li::before {
  content: "※";
  display: block;
  position: absolute;
  left: 0;
}
.support-move-top-txt ul li:not(:last-child) {
  margin-bottom: 5px;
}

.sc-decotation-section.rush {
  margin-bottom: 70px;
}
.sc-decotation-section.rush .support-contents {
  margin-bottom: 40px;
}
.sc-decotation-section.rush .support-contents > ul > li:nth-child(1)::before {
  background: url(../residents/support_move/images/support_rush_img1.svg) center center/contain no-repeat;
}
.sc-decotation-section.rush .support-contents > ul > li:nth-child(2)::before {
  background: url(../residents/support_move/images/support_rush_img2.svg) center center/contain no-repeat;
}
.sc-decotation-section.rush .support-contents > ul > li:nth-child(3)::before {
  background: url(../residents/support_move/images/support_rush_img3.svg) center center/contain no-repeat;
}
.sc-decotation-section.rush .support-contents > ul > li:nth-child(4)::before {
  background: url(../residents/support_move/images/support_rush_img4.svg) center center/contain no-repeat;
}
.sc-decotation-section.rush .support-contents > ul > li:nth-child(4)::before {
  background: url(../residents/support_move/images/support_rush_img4.svg) center center/contain no-repeat;
}
.sc-decotation-section.rush .support-contents > ul > li::before {
  content: "";
  display: block;
  position: relative;
  width: 107px;
  height: 80px;
  margin: 0 auto 30px;
}
.sc-decotation-section.tel-support {
  position: relative;
  margin-bottom: 80px;
  padding: 70px 0 80px;
}
.sc-decotation-section.tel-support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #F7F9FC;
}
.sc-decotation-section.tel-support h2 p,
.sc-decotation-section.tel-support h3 p {
  background: #F7F9FC;
}
.sc-decotation-section.tel-support .support-contents {
  margin-bottom: 40px;
}
.sc-decotation-section.tel-support .support-contents > ul > li:nth-child(1)::before {
  background: url(../residents/support_move/images/support_tel_support_img1.svg) center center/contain no-repeat;
}
.sc-decotation-section.tel-support .support-contents > ul > li:nth-child(2)::before {
  background: url(../residents/support_move/images/support_tel_support_img2.svg) center center/contain no-repeat;
}
.sc-decotation-section.tel-support .support-contents > ul > li:nth-child(3)::before {
  background: url(../residents/support_move/images/support_tel_support_img3.svg) center center/contain no-repeat;
}
.sc-decotation-section.tel-support .support-contents > ul > li:nth-child(4)::before {
  background: url(../residents/support_move/images/support_tel_support_img4.svg) center center/contain no-repeat;
}
.sc-decotation-section.tel-support .support-contents > ul > li:nth-child(4)::before {
  background: url(../residents/support_move/images/support_tel_support_img4.svg) center center/contain no-repeat;
}
.sc-decotation-section.tel-support .support-contents > ul > li::before {
  content: "";
  display: block;
  position: relative;
  width: 98px;
  height: 80px;
  margin: 0 auto 30px;
}
.sc-decotation-section > h2,
.sc-decotation-section > h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}
.sc-decotation-section > h2::after,
.sc-decotation-section > h3::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  background: #A8C0E1;
  z-index: -1;
}
.sc-decotation-section > h2 .title-before,
.sc-decotation-section > h3 .title-before {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  width: 80px;
  height: 80px;
  background: #003A88;
  border-radius: 50%;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.sc-decotation-section > h2 .title-before .txt-block,
.sc-decotation-section > h3 .title-before .txt-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  align-items: end;
}
.sc-decotation-section > h2 .title-before .txt-block.align-center,
.sc-decotation-section > h3 .title-before .txt-block.align-center {
  -webkit-box-align: center;
  align-items: center;
}
.sc-decotation-section > h2 .title-before .bold,
.sc-decotation-section > h3 .title-before .bold {
  font-weight: 700;
}
.sc-decotation-section > h2 .title-before .large,
.sc-decotation-section > h3 .title-before .large {
  font-size: 2rem;
}
.sc-decotation-section > h2 .title-before .small,
.sc-decotation-section > h3 .title-before .small {
  font-size: 1rem;
}
.sc-decotation-section > h2 p,
.sc-decotation-section > h3 p {
  padding: 0 25px 0 15px;
  background: #fff;
  color: #003A88;
  font-size: 2.8rem;
  font-weight: 700;
}
.sc-decotation-section .support-contents > ul > li {
  position: relative;
}
.sc-decotation-section .support-contents > ul > li h3,
.sc-decotation-section .support-contents > ul > li h4 {
  margin-bottom: 20px;
  color: #DE7737;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.sc-decotation-section .support-contents > ul > li h3 .small,
.sc-decotation-section .support-contents > ul > li h4 .small {
  font-size: 1.8rem;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article > *:not(:last-child) {
  margin-bottom: 15px;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .article-list ul li {
  position: relative;
  color: #1D1D1D;
  padding-left: 12px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .article-list ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #003A88;
  border-radius: 50%;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .article-list ul li:not(:last-child) {
  margin-bottom: 5px;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .support-other {
  padding: 10px 15px;
  border: 2px solid #DE7737;
  border-radius: 6px;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .support-other .add-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  margin-bottom: 5px;
  color: #DE7737;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .support-other .add-txt::before {
  content: "";
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url(../residents/support_move/images/plus.png) center center/contain no-repeat;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .support-other p {
  color: #DE7737;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .support-other p .medium {
  font-weight: 500;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .support-other p .small {
  font-size: 1.1rem;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .annotation-list ul li {
  position: relative;
  color: #4B4B4B;
  padding-left: 15px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .annotation-list ul li::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.sc-decotation-section .support-contents > ul > li .support-contents-article .annotation-list ul li:not(:last-child) {
  margin-bottom: 5px;
}

.sc-support-section-title.add-deco h2,
.sc-support-section-title.add-deco h3 {
  padding-bottom: 20px;
}
.sc-support-section-title.add-deco h2::after,
.sc-support-section-title.add-deco h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: #003A88;
  transform: translate(-50%, 0);
}
.sc-support-section-title h2,
.sc-support-section-title h3 {
  position: relative;
  color: #1D1D1D;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.sc-tel-wrap {
  max-width: 475px;
  width: 100%;
  margin: 0 auto;
}
.sc-tel-wrap a {
  display: block;
  padding: 20px 30px;
  background: #003A88;
  border-radius: 6px;
}
.sc-tel-wrap a p {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}
.sc-tel-wrap a .tel-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.sc-tel-wrap a .tel-txt span {
  display: inline-block;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  padding-left: 20px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
.sc-tel-wrap a .tel-txt span::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath d='m31.087 22.613-7-3a1.5 1.5 0 0 0-1.75.431l-3.1 3.788A23.167 23.167 0 0 1 8.163 12.757l3.788-3.1a1.5 1.5 0 0 0 .431-1.75l-3-7A1.51 1.51 0 0 0 7.663.038l-6.5 1.5A1.5 1.5 0 0 0 0 3a29 29 0 0 0 29 29 1.5 1.5 0 0 0 1.463-1.163l1.5-6.5a1.518 1.518 0 0 0-.876-1.725Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
}

.reassurance-support-section {
  margin-bottom: 80px;
}
.reassurance-support-section .sc-support-section-title {
  margin-bottom: 45px;
}
.reassurance-support-section .scroll-wrapper {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.reassurance-support-section .scroll-wrapper table {
  position: relative;
  width: 1000px;
}
.reassurance-support-section .scroll-wrapper table colgroup > *:not(:last-child) {
  border-right: 1px solid #ccc;
}
.reassurance-support-section .scroll-wrapper table colgroup .col1 {
  width: 200px;
}
.reassurance-support-section .scroll-wrapper table colgroup .col2 {
  width: 120px;
}
.reassurance-support-section .scroll-wrapper table colgroup .col3 {
  width: 120px;
}
.reassurance-support-section .scroll-wrapper table colgroup .col4 {
  width: 280px;
}
.reassurance-support-section .scroll-wrapper table colgroup .col5 {
  width: 280px;
}
.reassurance-support-section .scroll-wrapper table tr {
  border-bottom: 1px solid #ccc;
}
.reassurance-support-section .scroll-wrapper table tr:nth-child(1) {
  border-top: 1px solid #ccc;
}
.reassurance-support-section .scroll-wrapper table tr th {
  padding: 10px 25px;
  background: #F7F9FC;
  color: #1D1D1D;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
}
.reassurance-support-section .scroll-wrapper table tr td:nth-child(2) {
  padding: 10px 15px;
  color: #4B4B4B;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
}
.reassurance-support-section .scroll-wrapper table tr td:nth-child(3) {
  padding: 10px 15px;
  text-align: right;
}
.reassurance-support-section .scroll-wrapper table tr td:nth-child(3) .txt-box {
  display: inline-block;
  color: #DE7737;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
}
.reassurance-support-section .scroll-wrapper table tr td:nth-child(3) .txt-box .small {
  font-size: 1.4rem;
}
.reassurance-support-section .scroll-wrapper table tr td:nth-child(3) .txt-box .add {
  display: block;
  font-size: 1rem;
  text-align: left;
}
.reassurance-support-section .scroll-wrapper table tr td:nth-child(4) {
  padding: 10px 25px;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.5;
}
.reassurance-support-section .scroll-wrapper table tr td:nth-child(5) {
  padding: 10px 20px;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.5;
}
.reassurance-support-section .scroll-wrapper .ps__rail-x {
  display: block;
  height: 7px;
  opacity: 1;
}
.reassurance-support-section .scroll-wrapper .ps__thumb-x {
  background-color: #003A88;
}
.reassurance-support-section .reassurance-add-txt {
  padding: 35px 50px 40px;
  background: #F7F9FC;
  border-radius: 6px;
}
.reassurance-support-section .reassurance-add-txt p {
  margin-bottom: 10px;
  color: #003A88;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.reassurance-support-section .reassurance-add-txt ul li {
  position: relative;
  padding-left: 16px;
  color: #4B4B4B;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.reassurance-support-section .reassurance-add-txt ul li::before {
  content: "※";
  display: block;
  position: absolute;
  left: 0;
}
.reassurance-support-section .reassurance-add-txt ul li:not(:last-child) {
  margin-bottom: 5px;
}

.support-backup-section {
  margin-bottom: 80px;
  padding: 40px 70px 30px 85px;
  border: 2px solid #A8C0E1;
  border-radius: 6px;
}
.support-backup-section .backup-desc h2,
.support-backup-section .backup-desc h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
  padding-left: 15px;
  color: #1D1D1D;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.support-backup-section .backup-desc h2::before,
.support-backup-section .backup-desc h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 3px;
  height: 100%;
  background: #003A88;
}
.support-backup-section .backup-desc p {
  margin-bottom: 20px;
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.support-backup-section .backup-desc > span {
  display: block;
  margin-bottom: 20px;
  color: #DE7737;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.support-backup-section .backup-desc > span .border {
  border-bottom: 2px solid #DE7737;
}
.support-backup-section .backup-desc ul li {
  position: relative;
  padding-left: 16px;
  color: #4B4B4B;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.support-backup-section .backup-desc ul li::before {
  content: "※";
  display: block;
  position: absolute;
  left: 0;
}
.support-backup-section .backup-desc ul li:not(:last-child) {
  margin-bottom: 5px;
}

.support-call-section {
  margin-bottom: 110px;
}
.support-call-section a {
  display: block;
  border: 2px solid #003A88;
  border-radius: 6px;
  height: 100%;
}
.support-call-section a .support-call-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 20px 40px;
  background: #003A88;
}
.support-call-section a .support-call-txt > span {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}
.support-call-section a .support-call-txt p {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
.support-call-section a .support-call-txt p span {
  font-size: 1.8rem;
}
.support-call-section a .support-tel-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
}
.support-call-section a .support-tel-wrap .tel-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 5px;
}
.support-call-section a .support-tel-wrap .tel-txt p {
  position: relative;
  padding-left: 70px;
  color: #003A88;
  font-family: "Roboto", sans-serif;
  font-size: 4.3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}
.support-call-section a .support-tel-wrap .tel-txt p::before {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  top: 50%;
  left: 0;
  width: 62px;
  height: 35px;
  background: url(../residents/support_move/images/freedial.jpg) center center/contain no-repeat;
}
.support-call-section a .support-tel-wrap span {
  color: #003A88;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
}

.solution-trouble-section {
  margin-bottom: 130px;
}
.solution-trouble-section .sc-support-section-title {
  margin-bottom: 35px;
}
.solution-trouble-section > p {
  margin-bottom: 65px;
  color: #4B4B4B;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.6;
}
.solution-trouble-section .trouble-contact-contents {
  position: relative;
  margin-bottom: 70px;
  padding: 30px 0;
  background: #F7F9FC;
  border-radius: 6px;
}
.solution-trouble-section .trouble-contact-contents::after {
  position: absolute;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 90px 0 90px;
  border-color: #F7F9FC transparent transparent transparent;
  border-style: solid;
  content: "";
  bottom: 0;
  left: 50%;
}
.solution-trouble-section .trouble-contact-contents > p {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.solution-trouble-section .trouble-contact-contents > p .blue {
  color: #003A88;
}
.solution-trouble-section .trouble-contact-contents ul {
  counter-reset: count-number;
}
.solution-trouble-section .trouble-contact-contents ul li {
  position: relative;
  padding-left: 55px;
  color: #003A88;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.solution-trouble-section .trouble-contact-contents ul li::before {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  counter-increment: count-number;
  content: counter(count-number) " ";
  top: 50%;
  left: 0;
  width: 40px;
  height: 40px;
  background: #003A88;
  border-radius: 50%;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.solution-trouble-section .trouble-contact-contents ul li p {
  color: #003A88;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.solution-trouble-section .trouble-contact-contents ul li a {
  position: relative;
  display: inline-block;
}
.solution-trouble-section .trouble-contact-contents ul li a.tel-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}
.solution-trouble-section .trouble-contact-contents ul li a.tel-link::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath d='m31.087 22.613-7-3a1.5 1.5 0 0 0-1.75.431l-3.1 3.788A23.167 23.167 0 0 1 8.163 12.757l3.788-3.1a1.5 1.5 0 0 0 .431-1.75l-3-7A1.51 1.51 0 0 0 7.663.038l-6.5 1.5A1.5 1.5 0 0 0 0 3a29 29 0 0 0 29 29 1.5 1.5 0 0 0 1.463-1.163l1.5-6.5a1.518 1.518 0 0 0-.876-1.725Z' fill='%23003a88'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  margin-right: 5px;
}
.solution-trouble-section .application-use-flow-contents > p {
  margin-bottom: 65px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
.solution-trouble-section .application-use-flow-contents ul > li:nth-child(1) .trouble-flow-contents::before {
  background: url(../residents/support_move/images/trouble_img1.png) center center/contain no-repeat;
}
.solution-trouble-section .application-use-flow-contents ul > li:nth-child(2) .trouble-flow-contents::before {
  background: url(../residents/support_move/images/trouble_img2.png) center center/contain no-repeat;
}
.solution-trouble-section .application-use-flow-contents ul > li:nth-child(3) .trouble-flow-contents::before {
  background: url(../residents/support_move/images/trouble_img3.png) center center/contain no-repeat;
}
.solution-trouble-section .application-use-flow-contents ul > li:nth-child(4) .trouble-flow-contents::before {
  background: url(../residents/support_move/images/trouble_img4.png) center center/contain no-repeat;
}
.solution-trouble-section .application-use-flow-contents ul > li:nth-child(5) .trouble-flow-contents::before {
  background: url(../residents/support_move/images/trouble_img5.png) center center/contain no-repeat;
}
.solution-trouble-section .application-use-flow-contents ul > li:nth-child(5) .trouble-flow-contents::before {
  background: url(../residents/support_move/images/trouble_img5.png) center center/contain no-repeat;
}
.solution-trouble-section .application-use-flow-contents ul > li {
  position: relative;
}
.solution-trouble-section .application-use-flow-contents ul > li .trouble-flow-contents::before {
  content: "";
  display: block;
  position: relative;
  width: 179px;
  height: 138px;
  margin: 0 auto 20px;
}
.solution-trouble-section .application-use-flow-contents ul > li p {
  color: #1D1D1D;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
.solution-trouble-section .application-use-flow-contents ul > li dl dt {
  margin-bottom: 15px;
  color: #1D1D1D;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
.solution-trouble-section .application-use-flow-contents ul > li dl dd {
  color: #4B4B4B;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.solution-trouble-section .application-use-flow-contents ul > li dl dd .red {
  color: #CE1141;
}

.language-section {
  margin-bottom: 65px;
}
.language-section h2,
.language-section h3 {
  margin-bottom: 65px;
}
.language-section ul {
  margin-bottom: 40px;
}
.language-section ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 150px;
  height: 150px;
  background: #F7F9FC;
  border-radius: 50%;
  flex-direction: column;
}
.language-section ul li figure {
  margin-bottom: 5px;
}
.language-section ul li p {
  margin-bottom: 5px;
  color: #003A88;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}
.language-section ul li span {
  font-size: 1.2rem;
  letter-spacing: 0;
}
.language-section > p {
  color: #4B4B4B;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.6;
}

.living-link-section {
  position: relative;
  margin-bottom: 80px;
  padding: 80px 0 110px;
}
.living-link-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #F7F9FC;
}
.living-link-section h2,
.living-link-section h3 {
  max-width: 645px;
  width: 100%;
  margin: 0 auto 60px;
}
.living-link-section .living-link-top-img {
  margin-bottom: 55px;
}
.living-link-section .living-link-top-img ul > li:nth-child(1)::before {
  background: url(../residents/support_move/images/living_link_icon1.svg) center center/contain no-repeat;
}
.living-link-section .living-link-top-img ul > li:nth-child(2)::before {
  background: url(../residents/support_move/images/living_link_icon2.svg) center center/contain no-repeat;
}
.living-link-section .living-link-top-img ul > li:nth-child(3)::before {
  background: url(../residents/support_move/images/living_link_icon3.svg) center center/contain no-repeat;
}
.living-link-section .living-link-top-img ul > li:nth-child(4)::before {
  background: url(../residents/support_move/images/living_link_icon4.svg) center center/contain no-repeat;
}
.living-link-section .living-link-top-img ul > li:nth-child(5)::before {
  background: url(../residents/support_move/images/living_link_icon5.svg) center center/contain no-repeat;
}
.living-link-section .living-link-top-img ul > li:nth-child(5)::before {
  background: url(../residents/support_move/images/living_link_icon5.svg) center center/contain no-repeat;
}
.living-link-section .living-link-top-img ul > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  padding-left: 50px;
  color: #003A88;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0;
}
.living-link-section .living-link-top-img ul > li::before {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  top: 50%;
  left: 0;
  width: 40px;
  height: 40px;
}
.living-link-section .living-link-top-img ul > li span {
  font-size: 1.8rem;
  font-weight: 700;
}
.living-link-section .living-link-top-img ul > li:not(:last-child) {
  margin-bottom: 30px;
}
.living-link-section .living-link-dl .living-link-dl-title {
  position: relative;
}
.living-link-section .living-link-dl .living-link-dl-title::before {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  left: 0;
  top: 50%;
  width: 80px;
  height: 80px;
  background: url(../residents/support_move/images/living_link_dl_icon.svg) center center/contain no-repeat;
}
.living-link-section .living-link-dl .living-link-dl-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  background: #A8C0E1;
  z-index: -1;
}
.living-link-section .living-link-dl .living-link-dl-title p {
  display: inline-block;
  padding: 0 25px 0 95px;
  background: #F7F9FC;
  color: #003A88;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.living-link-section .living-link-dl.flow-contents {
  margin-bottom: 95px;
}
.living-link-section .living-link-dl.flow-contents .living-link-dl-title {
  margin-bottom: 75px;
}
.living-link-section .living-link-dl.flow-contents .flow-section {
  counter-reset: count-number;
}
.living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background: #fff;
  border-radius: 6px;
}
.living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap::before {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  counter-increment: count-number;
  content: counter(count-number) " ";
  display: block;
  top: 0;
  left: 15px;
  color: #003A88;
  font-family: "Roboto", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap:nth-child(1) {
  padding: 50px 30px 40px 25px;
}
.living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap:nth-child(2) {
  padding: 35px 25px 55px 35px;
}
.living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap .dl-flow-img-wrap figure img {
  object-position: top center;
  object-fit: contain;
}
.living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap .dl-flow-txt p {
  margin-bottom: 20px;
  color: #003A88;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap .dl-flow-txt span {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.living-link-section .living-link-dl.dl-contents .living-link-dl-title {
  margin-bottom: 50px;
}
.living-link-section .living-link-dl.dl-contents .dl-section .dl-search p {
  margin-bottom: 20px;
  color: #1D1D1D;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.life-cycle-concierge-section {
  margin-bottom: 100px;
}
.life-cycle-concierge-section h2,
.life-cycle-concierge-section h3 {
  position: relative;
  margin-bottom: 30px;
  padding-left: 15px;
  color: #1D1D1D;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.life-cycle-concierge-section h2::before,
.life-cycle-concierge-section h3::before {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  top: 50%;
  left: 0;
  width: 3px;
  height: 100%;
  background: #003A88;
}
.life-cycle-concierge-section .qr-wrap {
  margin-bottom: 25px;
}
.life-cycle-concierge-section .qr-wrap .qr-txt p {
  margin-bottom: 15px;
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.life-cycle-concierge-section .qr-wrap .qr-txt a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #003A88;
  font-size: 1.5rem;
  letter-spacing: 0;
  border-bottom: 1px solid #003A88;
}
.life-cycle-concierge-section .qr-wrap .qr-txt a::before {
  width: 5px;
  height: 5px;
  border-top: 1px solid #003A88;
  border-right: 1px solid #003A88;
  -webkit-transform: translate(0, 0) rotate(45deg);
  transform: translate(0, 0) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
}
.life-cycle-concierge-section .concierge-service-list > ul li:nth-child(1) dl dt {
  background: #F9BE00;
}
.life-cycle-concierge-section .concierge-service-list > ul li:nth-child(2) dl dt {
  background: #84CCE2;
}
.life-cycle-concierge-section .concierge-service-list > ul li:nth-child(3) dl dt {
  background: #003A88;
}
.life-cycle-concierge-section .concierge-service-list > ul li:nth-child(4) dl dt {
  background: #59B74B;
}
.life-cycle-concierge-section .concierge-service-list > ul > li:nth-child(1) dl dt img {
  height: 37px;
}
.life-cycle-concierge-section .concierge-service-list > ul > li:nth-child(2) dl dt img {
  height: 33px;
}
.life-cycle-concierge-section .concierge-service-list > ul > li:nth-child(3) dl dt p::before {
  content: "";
  display: block;
  position: relative;
  margin-right: 10px;
  width: 55px;
  height: 35px;
  background: url(../residents/support_move/images/icon_junk_remova.svg) center center/contain no-repeat;
}
.life-cycle-concierge-section .concierge-service-list > ul > li:nth-child(4) dl dt p::before {
  content: "";
  display: block;
  position: relative;
  margin-right: 15px;
  width: 50px;
  height: 53px;
  background: url(../residents/support_move/images/icon_house_cleaning.svg) center center/contain no-repeat;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 85px;
  margin-bottom: 15px;
  border-radius: 6px;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dt img {
  object-fit: contain;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dt p {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dt p::before {
  content: "";
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd > *:not(:last-child) {
  margin-bottom: 2px;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd > p {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul .blue {
  color: #004FB9;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul .orange {
  color: #DE7737;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul .red {
  color: #A90F34;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul .bold {
  font-weight: 700;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul .height-double {
  height: 112px;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul .justify-center {
  -webkit-justify-content: center;
  justify-content: center;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul .txt-large {
  font-size: 2.4rem;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul .txt-center {
  text-align: center;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  background: #F7F9FC;
  color: #1D1D1D;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  gap: 5px;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li:not(:last-child) {
  margin-bottom: 2px;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li.price-service p {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li.price-service b {
  position: relative;
}

.support-pdf-section {
  position: relative;
  padding: 45px 0;
}
.support-pdf-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
  background: #F7F9FC;
}
.support-pdf-section p {
  margin-bottom: 25px;
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
}
.support-pdf-section a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 350px;
  width: 100%;
  height: 65px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #003A88;
  border-radius: 6px;
  color: #1D1D1D;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.support-pdf-section a::after {
  content: "";
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  padding-left: 25px;
  background: url(../residents/support_move/images/icon_pdf_link.svg) center center/contain no-repeat;
}

.fixed-check-support-button {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
}
.fixed-check-support-button a .support-btn-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.fixed-check-support-button a .support-btn-txt p {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 135px;
  height: 34px;
  background: #fff;
  color: #4B4B4B;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0;
  border: 1px solid #EB8241;
  border-radius: 17px;
}
.fixed-check-support-button a .support-btn-txt p::before {
  position: absolute;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5.5px 0 5.5px;
  border-color: #EB8241 transparent transparent transparent;
  border-style: solid;
  content: "";
  display: block;
  bottom: 0px;
  left: 50%;
}
.fixed-check-support-button a .support-btn-txt p::after {
  position: absolute;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5.5px 0 5.5px;
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  content: "";
  display: block;
  bottom: 2px;
  left: 50%;
}
.fixed-check-support-button a .btn-circle {
  background: #EB8241;
}
.fixed-check-support-button a .btn-circle p {
  position: relative;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

/* トリプルガード24ページ
-------------------------------------------------------*/
/* ========== BASE (no media query) ========== */
/* count: 99 */
.price-section {
  margin-bottom: 65px;
}

.price-section h2, .price-section h3 {
  margin-bottom: 35px;
}

.price-section ul {
  margin-bottom: 40px;
}

.price-section ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 150px;
  height: 150px;
  background: #f7f9fc;
  border-radius: 50%;
  flex-direction: column;
}

.price-section ul li figure {
  margin-bottom: 5px;
}

.price-section ul li p {
  margin-bottom: 5px;
  color: #003a88;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price-section ul li span {
  font-size: 1.2rem;
  letter-spacing: 0;
}

.price-section > p {
  color: #4b4b4b;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.6;
}

.tripleguard24-top-image {
  margin-bottom: 50px;
}

.tripleguard24-top-image .tg-image picture img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.tg-section-title {
  margin-bottom: 65px;
}

.tg-section-title.add-deco h2, .tg-section-title.add-deco h3 {
  padding-bottom: 20px;
}

.tg-section-title.add-deco h2::after, .tg-section-title.add-deco h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #003a88;
  transform: translate(-50%, 0);
}

.tg-section-title h2, .tg-section-title h3 {
  position: relative;
  color: #1d1d1d;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.tg-price-section .tg-price-dl-title {
  position: relative;
}

.tg-price-section .tg-price-dl-title::before {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  top: 50%;
  width: 80px;
  height: 80px;
  background: url(../residents/support_move/images/living_link_dl_icon.svg) center center/contain no-repeat;
}

.tg-price-section .tg-price-dl-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  background: #a8c0e1;
  z-index: -1;
}

.tg-price-section .tg-price-dl-title p {
  display: inline-block;
  padding: 0 25px 0 95px;
  background: #f7f9fc;
  color: #003a88;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.tg-price-section > p {
  text-align: center;
}

.tg-price-section .tg-price-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 95px;
}

.tg-price-section .tg-price-wrap .tg-price-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: calc((100% - 20px) / 2);
  padding: 65px 0;
  background: #e4efff;
  color: #003a88;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.tg-price-section .tg-price-wrap .tg-price-contents .tg-price-details {
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 700;
}

.tg-price-section .tg-price-wrap .tg-price-contents .tg-price-costs {
  font-size: 4rem;
  font-weight: 900;
}

.tg-price-section .tg-price-wrap .tg-price-contents .tg-price-costs span {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
}

.tg-price-section.dl-contents .price-dl-title {
  margin-bottom: 50px;
}

.tg-price-section.dl-contents .dl-section .dl-search p {
  margin-bottom: 20px;
  color: #1d1d1d;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.tg-support-section {
  margin-bottom: 100px;
}

.tg-support-section .tg-support-wrap .tg-support-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 30px;
  background: #f9f9f9;
}

.tg-support-section .tg-support-wrap .tg-support-contents .tg-support-title {
  position: relative;
  margin-bottom: 30px;
  padding-left: 110px;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.tg-support-section .tg-support-wrap .tg-support-contents .tg-support-title::before {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  left: 0;
  top: 50%;
  width: 80px;
  height: 80px;
}

.tg-support-section .tg-support-wrap .tg-support-contents .tg-support-title h3 {
  margin-bottom: 15px;
  color: #003a88;
  font-size: 2.4rem;
  font-weight: 700;
}

.tg-support-section .tg-support-wrap .tg-support-contents .tg-support-title p {
  font-size: 1.6rem;
}

.tg-support-section .tg-support-wrap .tg-support-contents:has(.more-contents.is-open) .tg-support-title {
  margin-bottom: 70px;
}

.tg-support-section .tg-support-wrap .tg-support-contents.flex-colomn {
  flex-direction: column;
  align-items: flex-start;
}

.tg-support-section .tg-support-wrap .tg-support-contents.flex-colomn .tg-support-title, .tg-support-section .tg-support-wrap .tg-support-contents.flex-colomn .more-contents {
  width: 100%;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner {
  display: none;
  width: 100%;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item {
  margin-bottom: 40px;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item h4 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item h4::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 3px;
  height: 100%;
  background: #003a88;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item p {
  font-size: 1.5rem;
  line-height: 1.5;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item ul.baseUl {
  margin-bottom: 20px;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item ul.baseUl li {
  list-style: disc;
  margin-bottom: 0.5em;
  margin-left: 2em;
  font-size: 1.5rem;
  line-height: 1.5;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item .banner-text {
  margin-bottom: 10px;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item .banner-wrap {
  width: 50%;
  margin: 0 auto 0 0;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item .banner-wrap a {
  display: block;
  width: 100%;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item .banner-wrap a img {
  width: 100%;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .morebutton, .tg-support-section .tg-support-wrap .tg-support-contents .more-contents .closebutton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #003a88;
  color: #003a88;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: left;
  cursor: pointer;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .morebutton .icon, .tg-support-section .tg-support-wrap .tg-support-contents .more-contents .closebutton .icon {
  position: relative;
  width: 16px;
  height: 16px;
  background: #003a88;
  border-radius: 50%;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .morebutton .icon::after, .tg-support-section .tg-support-wrap .tg-support-contents .more-contents .closebutton .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .closebutton {
  display: none;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents .closebutton .icon::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents.is-open .morebutton {
  display: none;
}

.tg-support-section .tg-support-wrap .tg-support-contents .more-contents.is-open .closebutton {
  display: flex;
  padding: 15px 20px;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table {
  position: relative;
  width: 100%;
  margin: 0 auto 10px;
  border: 1px solid #d8d8d8;
  border-collapse: collapse;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table td.tg-limit-merge {
  position: relative;
  padding: 0;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table .tg-limit-merge__top {
  padding: 15px 30px;
  padding-bottom: calc((30px + 1.5rem) * 3 + 15px);
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table .tg-limit-merge__sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  border-right: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  background: #fff;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table .tg-limit-merge__subrow {
  padding: 15px 30px;
  border-top: 1px solid #d8d8d8;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table .tg-limit-merge__subrow:first-child {
  border-top: none;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table .tg-col-category {
  width: 15%;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table .tg-col-item {
  width: 58%;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table .tg-col-limit {
  width: 25%;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table th, .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table td {
  vertical-align: middle;
  padding: 15px 30px;
  border: 1px solid #d8d8d8;
  font-size: 1.5rem;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table thead th {
  background: #eaeaea;
  font-weight: 700;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table tbody th {
  background: #eaeaea;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table tbody td {
  background: #fff;
  text-align: left;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table.fi-table th, .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table.fi-table td {
  padding: 10px 20px;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table.fi-table thead th {
  text-align: center;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table.fi-table tbody th {
  text-align: center;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table.fi-table tbody td {
  padding: 15px 20px;
  text-align: center;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table.fi-table .fi-col-premium {
  width: 20%;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .ps__rail-x {
  display: block;
  bottom: 40px;
  height: 8px;
  opacity: 1;
}

.tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .ps__thumb-x {
  background-color: #003a88;
}

.tg-support-section .tg-support-wrap .tg-support-contents ul.notes-list {
  margin-bottom: 60px;
}

.tg-support-section .tg-support-wrap .tg-support-contents ul.notes-list li {
  margin-left: 1em;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1em;
}

.tg-support-section .tg-support-wrap .tg-support-contents ul.notes-list li::before {
  content: "※";
}

.tg-support-section .tg-support-wrap .tg-support-contents .note {
  font-size: 1.2rem;
  font-weight: 400;
}

.tg-support-section .tg-support-wrap .tg-support-contents .caution-contents {
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
}

.tg-support-section .tg-support-wrap .tg-support-contents .caution-contents h5 {
  margin-bottom: 20px;
  color: #003a88;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.tg-support-section .tg-support-wrap .tg-support-contents .caution-contents ol.baseOl {
  margin-bottom: 20px;
}

.tg-support-section .tg-support-wrap .tg-support-contents .caution-contents ol.baseOl li {
  margin-bottom: 1em;
  margin-left: 1em;
  counter-increment: list-item 1;
  font-size: 1.5rem;
  line-height: 1.5;
  text-indent: -1em;
}

.tg-support-section .tg-support-wrap .tg-support-contents .caution-contents ol.baseOl li::before {
  content: counter(list-item) ". ";
}

.tg-support-section .tg-support-wrap .tg-support-contents .accident-contents {
  padding: 20px;
  border: 1px solid #003a88;
  font-size: 1.5rem;
}

.tg-support-section .tg-support-wrap .tg-support-contents .accident-contents h5 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.tg-support-section .tg-support-wrap .tg-support-contents .accident-contents > p {
  margin-bottom: 15px;
}

.tg-support-section .tg-support-wrap .tg-support-contents .accident-contents .accident-tel-contents {
  margin-bottom: 10px;
  padding: 15px 20px;
  background: #f7f9fc;
}

.tg-support-section .tg-support-wrap .tg-support-contents .accident-contents .accident-tel-contents p:not(.tel-number) {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.tg-support-section .tg-support-wrap .tg-support-contents .accident-contents .accident-tel-contents p.tel-number a {
  display: block;
  position: relative;
  padding-left: 35px;
  color: #003a88;
  font-size: clamp(2rem, 2.3vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.tg-support-section .tg-support-wrap .tg-support-contents .accident-contents .accident-tel-contents p.tel-number a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 26px;
  height: 26px;
  background: url(../residents/tripleguard24/images/tel_icon.svg) center center/contain no-repeat;
}

.tg-support-section .tg-support-wrap .tg-support-contents .accident-contents ul.notes-list {
  margin-bottom: 0;
}

.tg-support-section .tg-support-wrap .tg-support-contents.fire-insurance .more-item {
  margin-bottom: 25px;
}

.tg-support-section .tg-support-wrap .tg-support-contents.fire-insurance ul.notes-list {
  margin-bottom: 0;
}

.tg-support-section .tg-support-wrap .tg-support-contents.fire-insurance .scroll-wrapper {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.tg-support-section .tg-support-wrap .tg-support-contents.fire-insurance .scroll-wrapper .ps__rail-x {
  bottom: 10px;
}

.tg-support-section .tg-support-wrap .tg-support-contents.reception-24hours .tg-support-title {
  max-width: 620px;
  margin-bottom: 0;
}

.tg-support-section .tg-support-wrap .tg-support-contents.reception-24hours .tg-support-title::before {
  background: url(../residents/tripleguard24/images/support_24hour.svg) center center/contain no-repeat;
}

.tg-support-section .tg-support-wrap .tg-support-contents.rent-guarantee .tg-support-title::before {
  background: url(../residents/tripleguard24/images/support_rent.svg) center center/contain no-repeat;
}

.tg-support-section .tg-support-wrap .tg-support-contents.fire-insurance .tg-support-title::before {
  background: url(../residents/tripleguard24/images/support_fire.svg) center center/contain no-repeat;
}

/* ========== @media screen and (min-width: 960px) ========== */
/* count: 3 */
@media screen and (min-width: 960px) {
  .price-section ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .price-section > p {
    margin-bottom: 65px;
    text-align: center;
  }
  .tg-price-section > p {
    margin-bottom: 65px;
  }
}
/* ========== @media screen and (max-width: 959px) ========== */
/* count: 43 */
@media screen and (max-width: 959px) {
  .price-section {
    margin-bottom: 50px;
  }
  .price-section h2, .price-section h3 {
    margin-bottom: 30px;
  }
  .price-section ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 305px;
    margin: 0 auto 30px;
    gap: 15px 10px;
  }
  .price-section ul li {
    width: 95px;
    height: 95px;
  }
  .price-section ul li figure {
    width: 38px;
    height: 25px;
  }
  .price-section ul li p {
    font-size: 1.2rem;
  }
  .price-section ul li span {
    font-size: 1rem;
  }
  .price-section > p {
    padding: 0 20px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .tg-section-title {
    margin-bottom: 35px;
  }
  .tg-section-title.add-deco h2, .tg-section-title.add-deco h3 {
    padding-bottom: 10px;
  }
  .tg-section-title.add-deco h2::after, .tg-section-title.add-deco h3::after {
    width: 10px;
  }
  .tg-section-title h2, .tg-section-title h3 {
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.04em;
  }
  .tg-price-section > p {
    margin-bottom: 30px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .tg-support-section {
    margin-bottom: 50px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents {
    padding: 20px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item {
    margin-bottom: 20px;
    padding: 5px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item h4 {
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 1.6rem;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item p {
    font-size: 1.4rem;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item ul.baseUl {
    margin-bottom: 5px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item .banner-wrap {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .more-contents .more-contents-inner .more-item.caution-contents {
    padding: 10px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .tg-support-title {
    margin-bottom: 20px;
    padding-left: 65px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .tg-support-title::before {
    width: 50px;
    height: 50px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .tg-support-title h3 {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .tg-support-title p {
    font-size: 1.4rem;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents.reception-24hours {
    justify-content: center;
    margin-bottom: 10px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper {
    margin-bottom: 0;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table {
    width: 645px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table .tg-limit-merge__top {
    position: relative;
    top: -60px;
    padding: 20px 25px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table .tg-limit-merge__subrow {
    padding: 15px 5px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table.fi-table {
    width: 645px;
    min-width: 645px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table.fi-table th, .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .tg-table.fi-table td {
    padding: 10px 20px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .scroll-wrapper .notes-list {
    width: 645px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .caution-contents h5 {
    font-size: 1.5rem;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .caution-contents ol.baseOl li {
    font-size: 1.4rem;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents .caution-contents .accident-contents ul.notes-list {
    width: 100%;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents.reception-24hours .tg-support-title {
    margin-bottom: 20px;
  }
  .tg-support-section .tg-support-wrap .tg-support-contents:has(.more-contents.is-open) .tg-support-title {
    margin-bottom: 30px;
  }
  .tg-price-section .tg-price-wrap {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .tg-price-section .tg-price-wrap .tg-price-contents {
    padding: 30px 0;
    width: 100%;
  }
  .tg-price-section .tg-price-wrap .tg-price-contents .tg-price-details {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .tg-price-section .tg-price-wrap .tg-price-contents .tg-price-costs {
    font-size: 3.2rem;
  }
  .tg-price-section .tg-price-wrap .tg-price-contents .tg-price-costs span {
    font-size: 2rem;
  }
}
@media screen and (min-width: 960px) {
  /* ------------------------------------------------------*/
  /* TOP
  -------------------------------------------------------*/
  .page-head-title.top::after {
    top: 50%;
  }
  .page-head-title.top-bgnone {
    margin-bottom: 40px;
  }
  .page-head-title.top-bgnone::after {
    background: none;
  }
  .residents-link-wrap ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
  .residents-link-wrap ul li {
    width: calc((100% - 60px) / 3);
  }
  .residents-link-wrap ul li a {
    padding: 45px 0 25px;
    border-radius: 3px;
    flex-direction: column;
  }
  .residents-link-wrap ul li a::before {
    margin: 0 auto 20px;
  }
  .residents-link-wrap ul li a p {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    -webkit-flex: 1;
    flex: 1;
  }
  .frozen-link-wrap .frozen-link-btn a:hover {
    color: #A8C0E1;
  }
  .pdf-link-wrap > ul > li > a > span {
    transition: 0.3s;
  }
  .pdf-link-wrap > ul > li > a > span::after {
    transition: 0.3s;
  }
  .pdf-link-wrap > ul > li > a:hover > dl {
    border-top: solid 2px #003A88;
    border-right: solid 2px #003A88;
    border-left: solid 2px #003A88;
  }
  .pdf-link-wrap > ul > li > a:hover > span::after {
    right: 20px;
  }
  .qa-wrap .qa-list ul li dl dt {
    min-height: 75px;
  }
  .qa-wrap .qa-list ul li dl dd p a:hover {
    opacity: 0.8;
  }
  .qa-wrap .qa-list ul li dl dd .link-list span a:hover {
    opacity: 0.7;
  }
  /* 蛹鈴匣螟ｧ蟄ｦ逡吝ｭｦ逕溘・蛟滉ｸｻ縺輔ｓ縺ｸ
  -------------------------------------------------------*/
  .international-notification table tr:nth-child(1) {
    background: #E1EBF8;
  }
  .international-notification table tr:nth-child(1) th:first-child {
    border-radius: 6px 0 0 6px;
  }
  .international-notification table tr:nth-child(1) th:last-child {
    border-radius: 0 6px 6px 0;
  }
  .international-notification table tr:not(:first-child) {
    border-bottom: 1px solid #EAEAEA;
  }
  .international-notification table tr > *:first-child {
    padding-left: 20px;
  }
  .international-notification table tr td a:hover {
    opacity: 0.7;
  }
  .international-notification .top-link-btn a:hover {
    background: #003A88;
    color: #fff;
  }
  /* IT驥崎ｪｬ
  -------------------------------------------------------*/
  .it-jusetsu-desc-wrap .point-contents ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .it-jusetsu-desc-wrap .point-contents ul li {
    width: calc((100% - 20px) / 2);
  }
  .it-jusetsu-desc-wrap .point-contents ul li:nth-child(1) {
    padding: 25px clamp(90px, 7.03vw, 135px) 30px 25px;
  }
  .it-jusetsu-desc-wrap .point-contents ul li:nth-child(2) {
    padding: 25px clamp(80px, 6.25vw, 120px) 30px 25px;
  }
  .it-jusetsu-desc-wrap .point-contents ul li:not(:last-child) {
    margin-right: 20px;
  }
  .it-jusetsu-desc-wrap .point-contents ul li h3,
  .it-jusetsu-desc-wrap .point-contents ul li h4 {
    -webkit-box-align: center;
    align-items: center;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li {
    width: 190px;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li:nth-child(1) {
    margin-right: 90px;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li:nth-child(2) {
    margin-right: 60px;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li:nth-child(2)::after {
    left: -20px;
  }
  .it-jusetsu-flow-wrap > ul > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* 繝ｩ繧ｯ繧ｹ繝・-------------------------------------------------------*/
  .rakusute-tel-link a {
    pointer-events: none;
  }
  .rakusute-desc-wrap p {
    text-align: center;
  }
  .rakusute-use-flow ul li:has(> a) > a {
    pointer-events: none;
  }
  .rakusute-use-flow ul li p.mb20-pc {
    margin-bottom: 20px;
  }
  .rakusute-use-flow ul li span {
    text-align: center;
  }
  .rakusute-point-wrap .point-contents ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
  }
  .rakusute-point-wrap .point-contents ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    flex-wrap: nowrap;
    width: calc((100% - 50px) / 3);
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap {
    height: 100%;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title p {
    min-height: 86px;
  }
  .rakusute-point-wrap .point-contents ul li figure {
    -webkit-flex: 1;
    flex: 1;
  }
  .rakusute-point-wrap .point-contents .purchase-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
  }
  .rakusute-point-wrap .point-contents .purchase-list .purchase-list-img {
    width: calc((100% - 50px) / 3);
  }
  .rakusute-point-wrap .point-contents .purchase-list .purchase-list-img img {
    object-fit: contain;
  }
  .rakusute-price-information-wrap .rakusute-price-information-tel a {
    pointer-events: none;
  }
  .rakusute-price-information-wrap .rakusute-price-information-tel a .tel-catch {
    margin-right: 25px;
  }
  .rakusute-price-information-wrap .rakusute-price-information-tel a .tel-txt {
    margin-right: 15px;
  }
  /* 蜃咲ｵ仙ｯｾ遲悶・繝ｼ繧ｸ
  -------------------------------------------------------*/
  .frozen-desc-wrap .desc-txt-wrap .frozen-txt p {
    text-align: center;
  }
  .frozen-point-wrap .frozen-point-list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-txt {
    margin-right: 20px;
    -webkit-flex: 1;
    flex: 1;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dt p {
    top: 15px;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-img {
    width: 245px;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-img figure {
    text-align: right;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-img figure img {
    width: auto;
    object-fit: contain;
    object-position: right center;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-txt {
    margin-right: 20px;
    -webkit-flex: 1;
    flex: 1;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-img {
    width: 245px;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-img figure {
    text-align: right;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-img figure img {
    width: auto;
    object-fit: contain;
    object-position: right center;
  }
  /* 螳牙ｿ・・螻・し繝昴・繝医・繝ｼ繧ｸ
  -------------------------------------------------------*/
  .sc-decotation-section .support-contents > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sc-decotation-section .support-contents > ul > li {
    width: calc((100% - 90px) / 4);
  }
  .sc-decotation-section .support-contents > ul > li:not(:last-child) {
    margin-right: 30px;
  }
  .sc-support-section-title h2,
  .sc-support-section-title h3 {
    text-align: center;
  }
  .sc-tel-wrap a {
    pointer-events: none;
  }
  .support-backup-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .support-backup-section .backup-desc {
    margin-right: 20px;
    padding-top: 15px;
  }
  .support-backup-section figure {
    max-width: 365px;
    width: 100%;
    -webkit-flex: 1;
    flex: 1;
  }
  .support-backup-section figure img {
    border-radius: 10px;
  }
  .support-call-section {
    height: 120px;
    pointer-events: none;
  }
  .support-call-section a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .support-call-section a .support-call-txt {
    flex-direction: column;
  }
  .support-call-section a .support-call-txt::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 0 60px 15px;
    border-color: transparent transparent transparent #003A88;
    border-style: solid;
    position: absolute;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    content: "";
    display: block;
    right: 0;
  }
  .solution-trouble-section > p {
    text-align: center;
  }
  .solution-trouble-section .trouble-contact-contents ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 30px 60px;
  }
  .solution-trouble-section .application-use-flow-contents ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .solution-trouble-section .application-use-flow-contents ul li:not(:first-child)::after {
    position: absolute;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 12px;
    border-color: transparent transparent transparent #003A88;
    border-style: solid;
    content: "";
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
  }
  .solution-trouble-section .application-use-flow-contents ul li dl dd {
    text-align: center;
  }
  .language-section ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .language-section > p {
    text-align: center;
  }
  .living-link-section .living-link-top-img {
    padding-left: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .living-link-section .living-link-top-img figure {
    margin-right: 50px;
  }
  .living-link-section .living-link-top-img ul {
    padding-top: 50px;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px 20px;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap {
    width: calc((100% - 20px) / 2);
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap:nth-child(2) figure {
    padding-top: 15px;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap .dl-flow-img-wrap figure {
    margin-right: 20px;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap .dl-flow-txt {
    -webkit-flex: 1;
    flex: 1;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section .qr-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px 40px;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section .qr-list .qr-list-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    align-items: end;
    gap: 20px 10px;
  }
  .life-cycle-concierge-section .qr-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    gap: 15px 10px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li {
    width: calc((100% - 60px) / 4);
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd > p {
    height: 55px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li {
    height: 55px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li.price-service b::before {
    position: absolute;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    content: "";
    display: block;
    width: 13px;
    height: 11px;
    top: 50%;
    left: -15px;
    background: url(../residents/support_move/images/icon_arrow_right.svg) center center/contain no-repeat;
  }
  .fixed-check-support-button {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
  }
  .fixed-check-support-button.top a {
    transform: scale(0.9) translate(10px, 10px);
  }
  .fixed-check-support-button a {
    display: block;
  }
  .fixed-check-support-button a:hover {
    transform: scale(1.2);
  }
  .fixed-check-support-button a .support-btn-txt {
    margin-bottom: 15px;
  }
  .fixed-check-support-button a .btn-circle {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 50;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .fixed-check-support-button a .btn-circle span {
    display: inline-block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }
  .fixed-check-support-button a .btn-circle p::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath d='m31.087 22.613-7-3a1.5 1.5 0 0 0-1.75.431l-3.1 3.788A23.167 23.167 0 0 1 8.163 12.757l3.788-3.1a1.5 1.5 0 0 0 .431-1.75l-3-7A1.51 1.51 0 0 0 7.663.038l-6.5 1.5A1.5 1.5 0 0 0 0 3a29 29 0 0 0 29 29 1.5 1.5 0 0 0 1.463-1.163l1.5-6.5a1.518 1.518 0 0 0-.876-1.725Z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    position: relative;
    bottom: 0;
    left: 50%;
    width: 17px;
    height: 17px;
    margin-top: 20px;
    transform: translate(-50%, 0);
  }
}
@media screen and (min-width: 960px) and (max-width: 1250px) {
  .page-head-title.frozen::after {
    right: 0 !important;
    transform: translate(0, 0) !important;
  }
}
@media screen and (max-width: 959px) {
  /* ------------------------------------------------------*/
  /* TOP
  -------------------------------------------------------*/
  .page-head-title.top::after {
    position: absolute;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    bottom: -35px;
    right: -25px;
    width: 77px;
    height: 88px;
  }
  .residents-link-wrap {
    padding-bottom: 30px;
  }
  .residents-link-wrap ul li {
    height: 80px;
  }
  .residents-link-wrap ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .residents-link-wrap ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    padding-left: 60px;
  }
  .residents-link-wrap ul li a::before {
    width: 40px;
    height: 38px;
    margin-right: 20px;
  }
  .residents-link-wrap ul li a p {
    font-size: 1.6rem;
  }
  .frozen-link-wrap {
    padding: 35px 0;
  }
  .frozen-link-wrap .frozen-link-btn {
    width: 100%;
  }
  .frozen-link-wrap .frozen-link-btn a {
    font-size: 1.6rem;
  }
  .frozen-link-wrap .frozen-link-btn a::after {
    right: 25px;
  }
  .pdf-link-wrap {
    margin-bottom: 50px;
    padding: 40px 0 50px;
  }
  .pdf-link-wrap > p {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  .qa-wrap {
    margin-bottom: 50px;
  }
  .qa-wrap .c-section-title {
    margin-bottom: 30px;
  }
  .qa-wrap .qa-list ul li:not(:last-child) {
    margin-bottom: 40px;
  }
  .qa-wrap .qa-list ul li dl dt {
    padding: 20px 15px;
    margin-bottom: 15px;
    border-radius: 3px;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  .qa-wrap .qa-list ul li dl dt::before {
    margin-right: 15px;
    font-size: 4rem;
  }
  .qa-wrap .qa-list ul li dl dd p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .qa-wrap .qa-list ul li dl dd .link-list span:not(:last-child) {
    margin-bottom: 15px;
  }
  .live-column-wrap {
    padding: 50px 0 60px;
  }
  .live-column-wrap h2,
  .live-column-wrap h3 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .live-column-wrap h2 span,
  .live-column-wrap h3 span {
    margin-bottom: 5px;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
  }
  /* 蛹鈴匣螟ｧ蟄ｦ逡吝ｭｦ逕溘・蛟滉ｸｻ縺輔ｓ縺ｸ
  -------------------------------------------------------*/
  .page-head-title.subordinate {
    margin-bottom: 30px;
    text-align: center;
  }
  .international-notification {
    margin-bottom: 50px;
  }
  .international-notification table {
    margin-bottom: 60px;
  }
  .international-notification table tr {
    position: relative;
    min-height: 50px;
  }
  .international-notification table tr.sp-bg th {
    position: relative;
  }
  .international-notification table tr.sp-bg th::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    margin: 0 calc(50% - 50vw);
    z-index: -1;
    background: #E1EBF8;
  }
  .international-notification table tr:nth-child(3n) {
    padding: 15px 0;
  }
  .international-notification table tr:nth-child(3n+2) {
    border-bottom: 1px solid #EAEAEA;
  }
  .international-notification table tr:last-child {
    border-bottom: 1px solid #EAEAEA;
  }
  .international-notification table tr:not(:nth-child(3n+1)) td:first-child {
    width: 150px;
  }
  .international-notification table tr th {
    width: 100%;
  }
  .international-notification table tr td {
    font-size: 1.4rem;
  }
  .international-notification table tr td a {
    width: 195px;
    height: 40px;
    font-size: 1.3rem;
    font-weight: 700;
  }
  .international-notification table tr td a::before {
    width: 11px;
    height: 14px;
  }
  .international-notification > p {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
  .international-notification .top-link-btn {
    width: 270px;
  }
  /* IT驥崎ｪｬ
  -------------------------------------------------------*/
  .page-head-title.it-jusetsu {
    margin-bottom: 20px;
    text-align: center;
  }
  .it-jusetsu-desc p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .it-jusetsu-desc-wrap {
    margin-bottom: 50px;
  }
  .it-jusetsu-desc-wrap .c-section-title {
    margin-bottom: 25px;
  }
  .it-jusetsu-desc-wrap .c-section-title h2 span, .it-jusetsu-desc-wrap .c-section-title h3 span {
    font-size: 1.5rem;
  }
  .it-jusetsu-desc-wrap .point-contents {
    margin-bottom: 55px;
  }
  .it-jusetsu-desc-wrap .point-contents ul li {
    padding: 25px 0 35px;
  }
  .it-jusetsu-desc-wrap .point-contents ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    margin: 0 calc(50% - 50vw);
    z-index: -1;
    background: #F7F9FC;
  }
  .it-jusetsu-desc-wrap .point-contents ul li:nth-child(1) p {
    width: calc(100% - 77px);
  }
  .it-jusetsu-desc-wrap .point-contents ul li:nth-child(1)::after {
    bottom: -3px;
    right: -15px;
    width: 77px;
    height: 85px;
  }
  .it-jusetsu-desc-wrap .point-contents ul li:nth-child(2) p {
    width: calc(100% - 100px);
  }
  .it-jusetsu-desc-wrap .point-contents ul li:nth-child(2)::after {
    bottom: 0;
    right: 0;
    width: 40px;
    height: 124px;
  }
  .it-jusetsu-desc-wrap .point-contents ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  .it-jusetsu-desc-wrap .point-contents ul li h3,
  .it-jusetsu-desc-wrap .point-contents ul li h4 {
    line-height: 1.2;
  }
  .it-jusetsu-desc-wrap .point-contents ul li h3 span,
  .it-jusetsu-desc-wrap .point-contents ul li h4 span {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    font-size: 1.1rem;
  }
  .it-jusetsu-desc-wrap .point-contents ul li h3 span::after,
  .it-jusetsu-desc-wrap .point-contents ul li h4 span::after {
    font-size: 1.2rem;
  }
  .it-jusetsu-desc-wrap .point-contents ul li p {
    line-height: 1.5;
  }
  .it-jusetsu-desc-wrap .recommend-contents p {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
  .it-jusetsu-desc-wrap .recommend-contents p span.large-2 {
    font-size: 1.8rem;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul {
    width: 240px;
    margin: 0 calc(50% - 120px) 0 calc(50% - 100px);
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li {
    padding: 35px 0;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li::after {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    height: 100px;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li:nth-child(1)::after {
    width: 68px;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li:nth-child(2)::after {
    width: 81px;
  }
  .it-jusetsu-desc-wrap .recommend-contents ul li:nth-child(3)::after {
    width: 52px;
  }
  .it-jusetsu-flow-wrap {
    margin-bottom: 60px;
  }
  .it-jusetsu-flow-wrap .c-section-title {
    margin-bottom: 30px;
  }
  .it-jusetsu-flow-wrap > ul > li {
    padding: 30px 20px 35px;
  }
  .it-jusetsu-flow-wrap > ul > li::before {
    width: 108px;
    height: 100px;
    margin: 0 auto 25px;
  }
  .it-jusetsu-flow-wrap > ul > li:not(:last-child) {
    margin-bottom: 25px;
  }
  .it-jusetsu-flow-wrap > ul > li .flow-contents h3,
  .it-jusetsu-flow-wrap > ul > li .flow-contents h4 {
    margin-bottom: 20px;
    text-align: center;
  }
  .it-jusetsu-flow-wrap > ul > li .flow-contents p {
    line-height: 1.4;
  }
  .it-jusetsu-flow-wrap > ul > li .flow-contents .annotation-list ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  /* 繝ｩ繧ｯ繧ｹ繝・-------------------------------------------------------*/
  .rakusute-mv {
    margin-bottom: 40px;
  }
  .rakusute-mv figure::before {
    content: "";
    display: block;
    padding-top: 143%;
  }
  .rakusute-desc-wrap {
    margin-bottom: 70px;
  }
  .rakusute-desc-wrap h1 {
    margin-bottom: 25px;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
  }
  .rakusute-desc-wrap p {
    margin-bottom: 40px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .rakusute-desc-wrap figure::before {
    content: "";
    display: block;
    padding-top: 116.44%;
  }
  .rakusute-use-flow {
    margin-bottom: 40px;
  }
  .rakusute-use-flow h2 {
    padding-bottom: 10px;
    font-size: 2rem;
  }
  .rakusute-use-flow h2::before {
    position: absolute;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    top: -10px;
    left: calc(50% - 133px);
    width: 59px;
    height: 95px;
  }
  .rakusute-use-flow h2::after {
    position: absolute;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    top: 25px;
    right: calc(50% - 133px - 7px);
    width: 50px;
    height: 42px;
  }
  .rakusute-use-flow h2 img {
    width: 266px;
  }
  .rakusute-use-flow ul li {
    padding: 20px 15px;
    border: 2px solid #D31176;
  }
  .rakusute-use-flow ul li:not(:last-child) {
    margin-bottom: 40px;
  }
  .rakusute-use-flow ul li:not(:last-child)::after {
    width: 19px;
    height: 20px;
  }
  .rakusute-use-flow ul li:has(> a) {
    padding: 0;
  }
  .rakusute-use-flow ul li:has(> a) > a {
    padding: 20px 15px;
  }
  .rakusute-use-flow ul li p {
    font-size: 1.9rem;
  }
  .rakusute-use-flow ul li .tel-txt {
    max-width: 376px;
    width: 100%;
    margin-bottom: 10px;
    padding: 0 30px;
  }
  .rakusute-use-flow ul li span {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .rakusute-use-flow ul li span.sp-center {
    text-align: center;
  }
  .rakusute-tel-link {
    margin-bottom: 70px;
  }
  .rakusute-tel-link::after {
    position: absolute;
    -webkit-transform: translate(15.8%, -23.9%);
    transform: translate(15.8%, -23.9%);
    max-width: 140px;
    width: 24.95%;
    max-height: 140px;
    top: 0;
    right: 0;
    height: calc((100vw - 30px) * 0.2495);
  }
  .rakusute-value-wrap {
    margin-bottom: 70px;
  }
  .rakusute-value-wrap figure::before {
    content: "";
    display: block;
    padding-top: 68.8%;
  }
  .rakusute-point-wrap > figure {
    max-width: 631px;
    width: 100%;
    margin-bottom: 5px;
  }
  .rakusute-point-wrap .point-contents {
    padding: 0 15px;
  }
  .rakusute-point-wrap .point-contents ul li:nth-child(1) .point-contents-wrap::before {
    width: 58px;
    height: 56px;
  }
  .rakusute-point-wrap .point-contents ul li:nth-child(2) .point-contents-wrap::before {
    width: 64px;
    height: 53px;
  }
  .rakusute-point-wrap .point-contents ul li:nth-child(3) .point-contents-wrap::before {
    width: 59px;
    height: 57px;
  }
  .rakusute-point-wrap .point-contents ul li:nth-child(3) .point-contents-wrap .point-contents-title {
    margin-bottom: 100px;
  }
  .rakusute-point-wrap .point-contents ul li:not(:last-child) {
    margin-bottom: 70px;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap {
    margin-bottom: 35px;
    padding: 35px 20px 25px;
    border: 3px solid #D31176;
    border-radius: 20px;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap::after {
    width: 23px;
    height: 24px;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title {
    margin-bottom: 15px;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title > span {
    margin-bottom: 20px;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title p {
    font-size: 1.9rem;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title p span.center-txt {
    top: 15px;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title p span.bold {
    font-size: 8.3rem;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-title p span.right {
    top: 60px;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-desc p {
    font-size: 1.5rem;
  }
  .rakusute-point-wrap .point-contents ul li .point-contents-wrap .point-contents-desc span {
    padding-top: 15px;
  }
  .rakusute-price-information-wrap {
    margin-bottom: 80px;
  }
  .rakusute-price-information-wrap figure::before {
    content: "";
    display: block;
    padding-top: 198.55%;
  }
  .rakusute-price-information-wrap .rakusute-price-information-tel {
    height: 100px;
  }
  .rakusute-price-information-wrap .rakusute-price-information-tel a {
    flex-direction: column;
  }
  .rakusute-price-information-wrap .rakusute-price-information-tel a .tel-catch {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .rakusute-price-information-wrap .rakusute-price-information-tel a .tel-txt {
    margin-bottom: 5px;
    font-size: 2.5rem;
  }
  .rakusute-price-information-wrap .rakusute-price-information-tel a .tel-txt::before {
    width: 32px;
    height: 20px;
    margin-right: 5px;
  }
  .rakusute-price-information-wrap .rakusute-price-information-tel a span {
    font-size: 1.2rem;
  }
  /* 蜃咲ｵ仙ｯｾ遲悶・繝ｼ繧ｸ
  -------------------------------------------------------*/
  .frozen-desc-wrap .desc-txt-wrap ul {
    margin-bottom: 50px;
  }
  .frozen-desc-wrap .desc-txt-wrap ul li {
    font-size: 1.5rem;
  }
  .frozen-desc-wrap .desc-txt-wrap .frozen-txt {
    padding: 25px 20px;
  }
  .frozen-desc-wrap .desc-txt-wrap .frozen-txt::after {
    width: 73px;
    height: 55px;
    top: -35px;
    right: 20px;
  }
  .frozen-desc-wrap .desc-txt-wrap .frozen-txt p {
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .frozen-desc-wrap .desc-txt-wrap .frozen-txt p span {
    font-size: 1.7rem;
  }
  .frozen-point-wrap {
    margin-bottom: 50px;
  }
  .frozen-point-wrap .frozen-point-list ul li {
    padding: 30px 20px;
    border-radius: 3px;
  }
  .frozen-point-wrap .frozen-point-list ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-txt dl {
    margin-bottom: 30px;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dt {
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dt span {
    width: 45px;
    height: 45px;
    border-radius: 2px;
    font-size: 1.2rem;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dt span::after {
    font-size: 1.6rem;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-txt dl dd {
    font-size: 1.5rem;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-img figure {
    text-align: center;
  }
  .frozen-point-wrap .frozen-point-list ul li .point-list-img figure img {
    width: auto;
  }
  .frozen-pipe-wrap {
    margin-bottom: 50px;
  }
  .frozen-pipe-wrap .frozen-pipe-list > p {
    font-size: 1.5rem;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li {
    padding: 40px 20px;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li:nth-child(1)::after {
    width: 73px;
    height: 55px;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-txt {
    margin-bottom: 25px;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-txt dl dt {
    font-weight: 700;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-img figure {
    text-align: center;
  }
  .frozen-pipe-wrap .frozen-pipe-list ul li .pipe-list-img figure img {
    width: auto;
  }
  /* 螳牙ｿ・・螻・し繝昴・繝医・繝ｼ繧ｸ
  -------------------------------------------------------*/
  .support-move-top-txt {
    margin-bottom: 35px;
  }
  .support-move-top-txt p {
    margin-bottom: 30px;
    font-size: 2rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  .support-move-top-txt ul {
    border: 2px solid #A90F34;
    border-radius: 3px;
  }
  .support-move-top-txt ul li {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .support-move-top-txt ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .sc-decotation-section.rush {
    margin-bottom: 50px;
  }
  .sc-decotation-section.rush .support-contents {
    margin-bottom: 20px;
  }
  .sc-decotation-section.rush .support-contents > ul > li::before {
    width: 75px;
    height: 56px;
    margin-bottom: 15px;
  }
  .sc-decotation-section.tel-support {
    margin-bottom: 50px;
    padding: 50px 0;
  }
  .sc-decotation-section.tel-support .support-contents {
    margin-bottom: 50px;
  }
  .sc-decotation-section.tel-support .support-contents > ul > li::before {
    width: 69px;
    height: 56px;
    margin-bottom: 15px;
  }
  .sc-decotation-section > h2 .title-before,
  .sc-decotation-section > h3 .title-before {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .sc-decotation-section > h2 .title-before .large,
  .sc-decotation-section > h3 .title-before .large {
    font-size: 1.2rem;
  }
  .sc-decotation-section > h2 .title-before .small,
  .sc-decotation-section > h3 .title-before .small {
    font-size: 1rem;
  }
  .sc-decotation-section > h2 p,
  .sc-decotation-section > h3 p {
    padding: 0 15px 0 5px;
    font-size: 2rem;
  }
  .sc-decotation-section .support-contents > ul {
    padding: 0 20px;
  }
  .sc-decotation-section .support-contents > ul > li:not(:last-child) {
    margin-bottom: 50px;
  }
  .sc-decotation-section .support-contents > ul > li h3,
  .sc-decotation-section .support-contents > ul > li h4 {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .sc-decotation-section .support-contents > ul > li h3 .small,
  .sc-decotation-section .support-contents > ul > li h4 .small {
    font-size: 1.6rem;
  }
  .sc-decotation-section .support-contents > ul > li .support-contents-article .article-list ul li {
    font-size: 1.6rem;
  }
  .sc-decotation-section .support-contents > ul > li .support-contents-article .article-list ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .sc-decotation-section .support-contents > ul > li .support-contents-article .article-list ul li::before {
    top: 9px;
    width: 5px;
    height: 5px;
  }
  .sc-decotation-section .support-contents > ul > li .support-contents-article .support-other {
    border-radius: 3px;
  }
  .sc-decotation-section .support-contents > ul > li .support-contents-article .support-other .add-txt {
    font-size: 1.7rem;
  }
  .sc-decotation-section .support-contents > ul > li .support-contents-article .support-other .add-txt::before {
    top: 2px;
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  .sc-decotation-section .support-contents > ul > li .support-contents-article .support-other p {
    font-size: 1.4rem;
  }
  .sc-decotation-section .support-contents > ul > li .support-contents-article .annotation-list ul li {
    line-height: 1.1;
  }
  .sc-support-section-title.add-deco h2,
  .sc-support-section-title.add-deco h3 {
    padding-bottom: 10px;
  }
  .sc-support-section-title.add-deco h2::after,
  .sc-support-section-title.add-deco h3::after {
    width: 10px;
  }
  .sc-support-section-title h2,
  .sc-support-section-title h3 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.04em;
  }
  .sc-tel-wrap {
    width: 270px;
  }
  .sc-tel-wrap a {
    padding: 15px 25px;
    border-radius: 3px;
  }
  .sc-tel-wrap a p {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .sc-tel-wrap a .tel-txt span {
    font-size: 1.8rem;
  }
  .reassurance-support-section {
    margin-bottom: 50px;
  }
  .reassurance-support-section .sc-support-section-title {
    margin-bottom: 20px;
  }
  .reassurance-support-section .scroll-wrapper {
    margin-bottom: 20px;
  }
  .reassurance-support-section .scroll-wrapper table {
    width: 645px;
  }
  .reassurance-support-section .scroll-wrapper table colgroup .col1 {
    width: 120px;
  }
  .reassurance-support-section .scroll-wrapper table colgroup .col2 {
    width: 120px;
  }
  .reassurance-support-section .scroll-wrapper table colgroup .col3 {
    width: 100px;
  }
  .reassurance-support-section .scroll-wrapper table colgroup .col4 {
    width: 140px;
  }
  .reassurance-support-section .scroll-wrapper table colgroup .col5 {
    width: 165px;
  }
  .reassurance-support-section .scroll-wrapper table tr th {
    padding: 10px;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .reassurance-support-section .scroll-wrapper table tr td:nth-child(2) {
    padding: 10px;
    font-size: 1.5rem;
  }
  .reassurance-support-section .scroll-wrapper table tr td:nth-child(3) {
    padding: 10px;
  }
  .reassurance-support-section .scroll-wrapper table tr td:nth-child(3) .txt-box {
    font-size: 2rem;
  }
  .reassurance-support-section .scroll-wrapper table tr td:nth-child(3) .txt-box .small {
    font-size: 1.5rem;
  }
  .reassurance-support-section .scroll-wrapper table tr td:nth-child(4) {
    padding: 10px;
    line-height: 1.2;
  }
  .reassurance-support-section .scroll-wrapper table tr td:nth-child(5) {
    padding: 10px;
    line-height: 1.2;
  }
  .reassurance-support-section .reassurance-add-txt {
    padding: 30px 20px 30px 25px;
  }
  .reassurance-support-section .reassurance-add-txt p {
    margin-bottom: 15px;
  }
  .reassurance-support-section .reassurance-add-txt ul li {
    line-height: 1.5;
  }
  .reassurance-support-section .reassurance-add-txt ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  .support-backup-section {
    margin-bottom: 50px;
    padding: 40px 20px;
    border-radius: 3px;
  }
  .support-backup-section .backup-desc h2,
  .support-backup-section .backup-desc h3 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .support-backup-section .backup-desc > span {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  .support-backup-section .backup-desc ul {
    margin-bottom: 25px;
  }
  .support-backup-section .backup-desc ul li {
    font-size: 1.2rem;
    line-height: 1.1;
  }
  .support-call-section {
    margin-bottom: 60px;
  }
  .support-call-section a {
    border-radius: 3px;
  }
  .support-call-section a .support-call-txt::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 58px 0 58px;
    border-color: #003A88 transparent transparent transparent;
    border-style: solid;
    position: absolute;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    content: "";
    display: block;
    bottom: 0;
    left: 50%;
  }
  .support-call-section a .support-call-txt > span {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
  .support-call-section a .support-call-txt p {
    font-size: 2rem;
  }
  .support-call-section a .support-tel-wrap {
    padding: 30px 20px 20px;
  }
  .support-call-section a .support-tel-wrap .tel-txt {
    margin-bottom: 10px;
  }
  .support-call-section a .support-tel-wrap .tel-txt p {
    padding-left: 45px;
    font-size: 3rem;
  }
  .support-call-section a .support-tel-wrap .tel-txt p::before {
    width: 40px;
    height: 23px;
  }
  .support-call-section a .support-tel-wrap span {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .solution-trouble-section {
    margin-bottom: 60px;
  }
  .solution-trouble-section .sc-support-section-title {
    margin-bottom: 30px;
  }
  .solution-trouble-section > p {
    margin-bottom: 30px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .solution-trouble-section .trouble-contact-contents {
    padding: 20px 15px 30px;
  }
  .solution-trouble-section .trouble-contact-contents::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 58px 0 58px;
    border-color: #F7F9FC transparent transparent transparent;
    border-style: solid;
  }
  .solution-trouble-section .trouble-contact-contents > p {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  .solution-trouble-section .trouble-contact-contents ul {
    width: fit-content;
    margin: 0 auto;
  }
  .solution-trouble-section .trouble-contact-contents ul li {
    font-size: 1.5rem;
  }
  .solution-trouble-section .trouble-contact-contents ul li::before {
    position: absolute;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    top: 5px;
    width: 35px;
    height: 35px;
    font-size: 2rem;
  }
  .solution-trouble-section .trouble-contact-contents ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .solution-trouble-section .trouble-contact-contents ul li p {
    font-size: 1.5rem;
  }
  .solution-trouble-section .application-use-flow-contents ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 320px;
    margin: 0 auto;
    gap: 45px 15px;
    counter-reset: count-number;
  }
  .solution-trouble-section .application-use-flow-contents ul > li {
    width: calc((100% - 15px) / 2);
  }
  .solution-trouble-section .application-use-flow-contents ul > li:not(:last-child)::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 8px;
    border-color: transparent transparent transparent #003A88;
    border-style: solid;
    position: absolute;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    content: "";
    display: block;
    position: absolute;
    top: 50px;
    right: -7.5px;
    z-index: 10;
  }
  .solution-trouble-section .application-use-flow-contents ul > li .trouble-flow-contents::before {
    width: 144px;
    height: 112px;
    margin-bottom: 15px;
  }
  .solution-trouble-section .application-use-flow-contents ul > li .trouble-flow-contents::after {
    position: absolute;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    counter-increment: count-number;
    content: counter(count-number) " ";
    display: block;
    top: 15px;
    left: 50%;
    color: #003A88;
    font-family: "Roboto", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .solution-trouble-section .application-use-flow-contents ul > li p {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .solution-trouble-section .application-use-flow-contents ul > li dl dt {
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .solution-trouble-section .application-use-flow-contents ul > li dl dd {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .language-section {
    margin-bottom: 50px;
  }
  .language-section h2,
  .language-section h3 {
    margin-bottom: 30px;
  }
  .language-section ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 305px;
    margin: 0 auto 30px;
    gap: 15px 10px;
  }
  .language-section ul li {
    width: 95px;
    height: 95px;
  }
  .language-section ul li figure {
    width: 38px;
    height: 25px;
  }
  .language-section ul li p {
    font-size: 1.2rem;
  }
  .language-section ul li span {
    font-size: 1rem;
  }
  .language-section > p {
    padding: 0 20px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .living-link-section {
    margin-bottom: 50px;
    padding: 50px 0;
  }
  .living-link-section h2,
  .living-link-section h3 {
    max-width: 500px;
    margin-bottom: 30px;
  }
  .living-link-section .living-link-top-img {
    margin-bottom: 70px;
  }
  .living-link-section .living-link-top-img figure {
    width: 210px;
    margin: 0 auto 20px;
  }
  .living-link-section .living-link-top-img ul > li {
    -webkit-box-align: center;
    align-items: center;
    padding-left: 25px;
  }
  .living-link-section .living-link-top-img ul > li::before {
    width: 20px;
    height: 20px;
  }
  .living-link-section .living-link-top-img ul > li span {
    font-size: 1.7rem;
  }
  .living-link-section .living-link-top-img ul > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .living-link-section .living-link-dl .living-link-dl-title::before {
    width: 50px;
    height: 50px;
  }
  .living-link-section .living-link-dl .living-link-dl-title p {
    padding: 0 20px 0 55px;
    font-size: 2rem;
    line-height: 1.1;
  }
  .living-link-section .living-link-dl.flow-contents {
    margin-bottom: 55px;
  }
  .living-link-section .living-link-dl.flow-contents .living-link-dl-title {
    margin-bottom: 50px;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap:not(:last-child) {
    margin-bottom: 45px;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap::before {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    font-size: 4rem;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap .dl-flow-img-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 15px;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap .dl-flow-img-wrap figure {
    width: 100px;
    margin-right: 20px;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap .dl-flow-img-wrap p {
    color: #003A88;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
  .living-link-section .living-link-dl.flow-contents .flow-section .flow-wrap .dl-flow-txt span {
    font-weight: 500;
  }
  .living-link-section .living-link-dl.dl-contents .living-link-dl-title {
    margin-bottom: 30px;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section .dl-search {
    margin-bottom: 40px;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section .dl-search p {
    text-align: center;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section .dl-search figure {
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section .qr-list .qr-list-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section .qr-list .qr-list-wrap:not(:last-child) {
    margin-bottom: 40px;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section .qr-list .qr-list-wrap figure {
    width: 130px;
    margin: 0 auto 10px;
  }
  .living-link-section .living-link-dl.dl-contents .dl-section .qr-list .qr-list-wrap a {
    width: 160px;
    margin: 0 auto;
  }
  .life-cycle-concierge-section {
    margin-bottom: 50px;
  }
  .life-cycle-concierge-section h2,
  .life-cycle-concierge-section h3 {
    line-height: 1.3;
  }
  .life-cycle-concierge-section .qr-wrap {
    margin-bottom: 40px;
  }
  .life-cycle-concierge-section .qr-wrap figure {
    display: none;
  }
  .life-cycle-concierge-section .qr-wrap .qr-txt p {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li:nth-child(2) dl dt {
    margin-bottom: 10px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li:nth-child(2) dl dt img {
    height: 25px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li:nth-child(3) dl dt p::before {
    width: 34px;
    height: 22px;
    margin-right: 10px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li:nth-child(4) dl dt p::before {
    width: 35px;
    height: 37px;
    margin-right: 10px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li:not(:last-child) {
    margin-bottom: 45px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dt {
    height: 60px;
    border-radius: 3px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dt p {
    font-size: 1.7rem;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd > *:not(:last-child) {
    margin-bottom: 5px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd > p:not(:last-child) {
    margin-bottom: 15px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul .txt-large {
    font-size: 2.3rem;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li {
    padding: 15px 20px;
    font-size: 1.3rem;
    line-height: 1.2;
    gap: 10px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li.price-service {
    position: relative;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li.price-service::before {
    position: absolute;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    content: "";
    display: block;
    width: 13px;
    height: 11px;
    top: 50%;
    right: 130px;
    background: url(../residents/support_move/images/icon_arrow_right.svg) center center/contain no-repeat;
  }
  .life-cycle-concierge-section .concierge-service-list > ul > li dl dd ul li.price-service p {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .support-pdf-section {
    padding: 40px 0;
  }
  .support-pdf-section p {
    margin-bottom: 20px;
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .support-pdf-section a {
    font-size: 1.5rem;
  }
  .support-pdf-section a::after {
    width: 14px;
    height: 14px;
    padding-left: 20px;
  }
  .fixed-check-support-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background: #F7F9FC;
    width: 100%;
    height: 60px;
    right: 0;
    bottom: 0;
    padding: 10px 15px;
  }
  .fixed-check-support-button > span {
    color: #1D1D1D;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
  }
  .fixed-check-support-button a {
    position: relative;
  }
  .fixed-check-support-button a .support-btn-txt {
    position: absolute;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    top: 5px;
    left: 50%;
  }
  .fixed-check-support-button a .support-btn-txt p {
    width: 140px;
    height: 30px;
    border: 2px solid #EB8241;
    letter-spacing: 0.01em;
  }
  .fixed-check-support-button a .btn-circle {
    border-radius: 2px;
  }
  .fixed-check-support-button a .btn-circle p {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 210px;
    height: 40px;
  }
  .fixed-check-support-button a .btn-circle p::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath d='m31.087 22.613-7-3a1.5 1.5 0 0 0-1.75.431l-3.1 3.788A23.167 23.167 0 0 1 8.163 12.757l3.788-3.1a1.5 1.5 0 0 0 .431-1.75l-3-7A1.51 1.51 0 0 0 7.663.038l-6.5 1.5A1.5 1.5 0 0 0 0 3a29 29 0 0 0 29 29 1.5 1.5 0 0 0 1.463-1.163l1.5-6.5a1.518 1.518 0 0 0-.876-1.725Z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    margin-right: 10px;
  }
}
/*-------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .pdf-link-wrap > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 0 20px;
  }
  .pdf-link-wrap > ul > li {
    flex: 1 0;
  }
  .pdf-link-wrap > ul > li > a > dl {
    padding: 15px min(6vw, 80px);
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    border-left: solid 2px #fff;
    border-radius: 6px 6px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .pdf-link-wrap > ul > li {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
  }
  .pdf-link-wrap > ul > li > a > dl {
    min-height: 90px;
    padding: 20px;
  }
  .pdf-link-wrap > ul > li > a > dl > dt {
    font-size: 1.5rem;
  }
  .pdf-link-wrap > ul > li > a > dl > dd {
    font-size: 1.3rem;
  }
  .pdf-link-wrap > ul > li > a > span {
    height: 40px;
    font-size: 1.3rem;
  }
  .pdf-link-wrap > ul > li.connection a > dl > dt::before {
    width: 18px;
    height: 18px;
  }
  .pdf-link-wrap > ul > li.net a > dl > dt::before {
    width: 21px;
    height: 14px;
  }
  .pdf-link-wrap > ul > li:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 414px) {
  /* ------------------------------------------------------*/
}
@media screen and (max-width: 360px) {
  /* ------------------------------------------------------*/
}

/*# sourceMappingURL=residents.css.map */
