/*import
-------------------------------------------------------------------------------- */
:root {
  --color-main: #0b5ca0;
  --color-main-dark: #003a6b;
  --color-sub: #ced7e4;
  --bg-main: #e8f7ff;
  --font-main: "Zen Kaku Gothic New";
}

/*general
-------------------------------------------------------------------------------- */
html {
  line-height: 1;
  font: inherit;
  font-size: 62.5%;
  /* 10px */
  -webkit-text-size-adjust: none;
  scroll-behavior: auto;
  overscroll-behavior: none;
}

body {
  width: 100%;
  height: 100%;
  line-height: 1.777;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, "Meiryo, Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  color: #111;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

/* body.open-nav {
  overflow: hidden;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.5;
  font-size: inherit;
}

p {
  margin: 0;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}

a {
  color: #111;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:active,
a:focus {
  color: var(--color-main);
  text-decoration: none;
  opacity: 0.7;
}

em {
  font-style: normal;
}

img {
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  max-width: 100%;
  line-height: 0;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}


sup {
  font-size: 65%;
}

button,
input[type="submit"] {
  outline: none;
  border: none;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}



/* box-sizing設定
----------------------------------------------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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


/* flex
----------------------------------------------------------------------------------------------- */
.flex-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-block-between {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-block-center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}



/* 表示非表示切り替え設定
----------------------------------------------------------------------------------------------- */
.pc-view {
  display: block;
}

.sp-tab-view,
.sp-view,
.smallpc-tab-view {
  display: none !important;
}

.visible-xss {
  display: none;
}


/*scrollbar*/
.scrollbar {
  width: 100%;
  height: 250px;
  position: relative;
  overflow-y: auto;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}

.scrollbar-event {
  width: 100%;
  height: 380px;
  position: relative;
  overflow-y: auto;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}




/* 各ページsection
----------------------------------------------------------------------------------------------- */
.row {
  height: 100%;
}

section {
  position: relative;
  margin-top: 150px;
  margin-bottom: 150px;
  /* overflow-x: clip; */
}

section:first-of-type {
  margin-top: 0;
}

section:last-of-type {
  margin-bottom: 0;
}




/* common 共通スタイル
----------------------------------------------------------------------------------------------- */

/*特定幅*/
.inner-max {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.inner-min {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.inner-btns {
  display: flex;
  justify-content: center;
  gap: 15px 50px;
}

.inner-btns.text-left {
  justify-content: flex-start;
}


/*title*/
.title-sec {
  display: grid;
  gap: 20px;
  margin-bottom: 50px;
}

.title-sec .main {
  line-height: 1;
  font-size: 2.2rem;
}

.title-sec .sub {
  line-height: 1;
  color: var(--color-main-dark);
  font-size: 6rem;
}

.title-max {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px 15px;
  margin-bottom: 40px;
  line-height: 1.2;
  font-size: 4rem;
  color: var(--color-main);
  font-weight: bold;
  letter-spacing: 0.05em;
}

.title-max .sub {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.title-max .sub::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 3px;
  background-color: var(--color-main);
  border-radius: 5px 0 5px 0;
}

.title-mid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px 15px;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--color-main);
  font-size: 3rem;
  letter-spacing: 0.05em;
}

.title-mid .sub {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.title-mid .sub::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 3px;
  background-color: var(--color-main);
  border-radius: 5px 0 5px 0;
}

.title-min {
  margin-bottom: 15px;
  line-height: 1.3;
  font-size: 2.2rem;
}

.title-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 15px;
}

.title-icon::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  background-color: var(--color-main);
  border-radius: 10px 0 10px 0;
}


.title-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 15px;
  margin: 25px 0;
  line-height: 1.2;
  font-size: 2.2rem;
  text-align: center;
}

.title-col .min {
  font-size: 1.6rem;
  font-weight: normal;
}

.title-border {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  white-space: nowrap;
  text-align: center;
}

.title-border::before {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 4px dotted var(--color-main);
}

.title-border::after {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 4px dotted var(--color-main);
}

/*bg*/
.bg-main {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--color-main);
  color: #fff;
}

.bg-main .title-mid {
  color: #fff;
}

.bg-main .title-mid .sub::before {
  background-color: #fff;
}


/*img*/
.img-wrap {
  border-radius: 25px;
  overflow: clip;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-col {
  border-radius: 15px;
  overflow: clip;
}

.img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*text*/
.font80 {
  font-size: 14px;
  font-size: 80%;
}

.font90 {
  font-size: 16px;
  font-size: 90%;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-rl {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  vertical-align: middle;
}

.text-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "MS P明朝", serif;
}

.text-through {
  text-decoration: line-through;
}

.text-underline {
  display: initial;
  padding-bottom: 2px;
  border-bottom: 2px solid #333;
}

.text-yellow {
  color: #f7d700;
}

.text-red {
  color: #c93745;
}

.text-pink {
  color: #ea9f8b;
}

.text-green {
  color: #51e8d1;
}

.text-blue {
  color: #0068c1;
}

.text-lblue {
  color: #2b9cc6;
}

.text-black {
  color: #111;
}

.text-black-asterisk {
  display: block;
  padding-left: 1.9rem;
  text-indent: -1.9rem;
}


.text-highlight {
  position: relative;
  display: inline;
  z-index: 1;
  background: linear-gradient(transparent 80%, rgba(255, 252, 0, 0.5) 0%);
  font-weight: bold;
}

.text-asterisk {
  padding-left: 1.6rem;
  text-indent: -1.6rem;
  line-height: 1.5;
  font-size: 90%;
}

.text-asterisk::before {
  content: "※";
}

.text-comment {
  margin-bottom: 40px;
}






/*btn*/
.c-btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  height: fit-content;
  min-height: 70px;
  padding: 20px 25px;
  gap: 5px 10px;
  background-color: var(--color-main);
  border-radius: 20px 0 20px 0;
  box-shadow: 0 0 15px rgb(0, 38, 69, 0.3);
  line-height: 1.2;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.c-btn::after {
  content: "";
  position: relative;
  width: 22px;
  height: 15px;
  background: url(../images/icon_arrow_btn.svg) no-repeat center / contain;
  transition: all 0.3s ease-in-out;
}

.c-btn>span {
  position: relative;
  display: block;
  line-height: 1.2;
}

.c-btn:hover,
.c-btn:active,
.c-btn:focus {
  background-color: var(--color-main-dark);
  color: #fff;
  opacity: 1;
}

.c-btn.disabled {
  filter: grayscale(1) !important;
  opacity: 0.6 !important;
  pointer-events: none !important;
}

button.c-btn {
  outline: none;
  transition: all 0.2s ease-in-out;
}


.c-btn-min {
  position: relative;
  display: inline-block;
  width: fit-content;
  min-width: 140px;
  padding: 13px 65px 13px 20px;
  background-color: var(--bg-main);
  line-height: 1;
  font-size: 1.6rem;
}

.c-btn-min::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 10px;
  background: url(../images/icon_arrow_bl.svg) no-repeat center / contain;
}

.c-btn-min:hover,
.c-btn-min:active,
.c-btn-min:focus {
  opacity: 1;
}


/*link*/
[class*="link-arrow"] {
  position: relative;
  padding-right: 25px;
  color: var(--color-main);
  font-weight: bold;
}

[class*="link-arrow"] span {
  border-bottom: 1px solid currentColor;
}

[class*="link-arrow"]::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 15px;
  height: 9px;
  background: url(../images/icon_arrow_btn_bl.svg) no-repeat center / contain;
  transition: all 0.3s ease-in-out;
}

[class*="link-arrow"]:hover {
  color: var(--color-main-dark);
}



.icon-arrow {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgb(243, 246, 251);
  background: linear-gradient(0deg, rgba(243, 246, 251, 1) 0%, rgba(232, 238, 247, 1) 100%);
  transition: all 0.3s ease-in-out;
}

.icon-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 40px;
  height: 15px;
  background: url(../images/icon_arrow_bl.svg) no-repeat center / contain;
  transition: all 0.3s ease-in-out;
  opacity: 0.2;
}

a:hover .icon-arrow {
  scale: 1.2;
}

.icon-mail {
  display: inline-block;
  width: 31px;
  height: 25px;
  background: url(../images/icon_mail.png) no-repeat center / contain;
}


/*list*/
.list-number {
  list-style: decimal;
  padding-left: 2.5rem;
}

.list-number li {
  list-style: inherit;
  margin: 5px 0;
}

.list-disc li {
  position: relative;
  margin: 5px 0;
  padding-left: 20px;
  line-height: 1.2;
}

.list-disc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-main);
}



/*column*/
.list-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(50% - 25px));
  justify-content: flex-start;
  gap: 50px;
}

.list-3col {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(33.33% - 25px));
  justify-content: flex-start;
  gap: 50px;
}

.list-4col {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(25% - 15px));
  justify-content: flex-start;
  gap: 25px;
}

.list-5col {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(20% - 15px));
  justify-content: flex-start;
  gap: 15px;
}


.list-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 15px;
}


.list-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin: 80px 0;
}

.list-images .img {
  text-align: center;
}


/*dl*/
.c-difi {
  margin: 30px 0;
}

.c-difi-box {
  display: flex;
  border-top: 1px solid var(--color-main-dark);
}

.c-difi-box:last-child {
  border-bottom: 1px solid var(--color-main-dark);
}

.c-difi-team {
  flex-shrink: 0;
  min-width: 220px;
  padding: 30px;
  background-color: var(--bg-main);
  line-height: 1.5;
  font-weight: bold;
}

.c-difi-desc {
  width: 100%;
  padding: 30px;
  margin: 0;
  background-color: #fff;
  line-height: 1.5;
}

.c-difi-desc p {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.c-difi-desc p:first-child {
  margin-top: 0;
}

.c-difi-desc p:last-child {
  margin-bottom: 0;
}

.c-difi-desc dl {
  width: fit-content;
}

.c-difi-desc .list-disc li {
  margin: 10px 0;
}

.c-difi-desc .list-disc li:first-child {
  margin-top: 0;
}

.c-difi-desc .list-disc li:last-child {
  margin-bottom: 0;
}

.c-difi-desc dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px 20px;
  margin: 12px 0;
}

.c-difi-desc dl div:first-child {
  margin-top: 0;
}

.c-difi-desc dl div:last-child {
  margin-bottom: 0;
}


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

.c-table-header {
  background-color: #e5e5e5;
}

.c-table-term {
  padding: 15px;
  vertical-align: top;
  font-weight: bold;
}

.c-table-desc {
  padding: 15px;
  line-height: 1.2;
}

.c-table-desc ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.c-table-header .c-table-term {
  padding: 15px;
  line-height: 1.2;
  font-size: 1.6rem;
  color: #666;
}

.c-table-box {
  border-bottom: 1px solid #ccc;
}

.c-table-box .c-table-term {
  padding: 25px 15px;
  background-color: #f5f5f5;
}

.c-table-box .c-table-desc {
  padding: 25px 15px;
}


/*アコーディオン*/
.c-accordion-trigger {
  position: relative;
  transition: background-color 0.3s ease-in-out;
}

.c-accordion-trigger:hover {
  cursor: pointer;
  background-color: var(--bg-main);
}

.c-accordion-content {
  display: none;
}

.c-accordion-content.open {
  display: block;
}


/*inview*/
.fadeIn,
.fadeInUp,
.fadeInLeft,
.fadeInRight,
.fadeInDown,
.zoomIn {
  opacity: 0;
}

.animate__animated {
  opacity: 1;
}

/*swiper*/
[class*="slider-common"] {
  overflow: clip;
}

[class*="slider-common"] .swiper-wrapper {
  transition-timing-function: linear;
}

[class*="slider-common"] .swiper-slide {
  width: fit-content;
}

/*装飾*/


/* header
----------------------------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 30px;
  left: 50%;
  translate: -50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  z-index: 999;
  max-width: 1270px;
  padding: 20px 50px;
  background-color: #fff;
  border-radius: 20px;
}

.header-top {
  width: fit-content;
}


/*site-brand*/
.site-brand-logo {
  display: flex;
  line-height: 1;
}



/*nav*/
.header-nav {
  top: 10px;
  left: 0;
  z-index: 9999;
  width: 100%;
  margin: 0 auto;
}

.nav-list {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 0 40px;
}

.nav-list>li {
  position: relative;
}

.nav-list>li>a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}


.nav-list>li>a:hover,
.nav-list>li>a.active {
  opacity: 1;
  color: var(--color-main);
}


/*inner nav*/
.in-trigger {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-right: 20px !important;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.in-trigger.active,
.in-trigger:hover {
  cursor: pointer;
  color: var(--color-main);
}

.in-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 5px;
  background: url(../images/icon_arrow_down.svg) no-repeat center / contain;
}

.in-trigger.is-active {
  color: var(--color-main);
}

.in-trigger.is-active::after {
  top: 30%;
  rotate: 180deg;
}

.nav-list-in {
  position: absolute;
  left: -20px;
  top: 20px;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 5px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  font-size: 1.6rem;
  clip-path: polygon(0 0, 100% 1%, 100% 0, 0 0);
  transition: all 0.3s ease-in-out;
}

.nav-list-in.is-open {
  visibility: visible;
  opacity: 1;
  clip-path: polygon(0 0, 100% 1%, 100% 100%, 0% 100%);
}

.nav-list-in .item {
  white-space: nowrap;
}

.nav-list-in .item a {
  display: block;
}

.nav-list-in .item a.active,
.nav-list-in .item a:hover {
  color: var(--color-main);
}


/* fixed-menu
----------------------------------------------------------------------------------------------- */

.fixed-menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  display: none;
}

.header-menu-btn {
  position: fixed;
  right: 20px;
  top: 15px;
  z-index: 10000;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 15px;
  /* opacity: 0; */
  /* pointer-events: none; */
  transition: background-color 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.header-menu-btn strong {
  display: block;
  margin-top: 8px;
  line-height: 1;
  font-size: 1.3rem;
  text-align: center;
  color: var(--color-main);
  letter-spacing: 0;
}

.is-animation .header-menu-btn,
.open-nav .header-menu-btn {
  opacity: 1;
  pointer-events: all;
}


.btn-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  cursor: pointer;
}

.btn-open div {
  position: relative;
  width: 40px;
  height: 25px;
  transition: transform 0.4s ease-in-out;
}

.btn-open span {
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-main);
  border-radius: 50rem;
  transition: all 0.3s;
  transform-origin: center;
}

.btn-open span:nth-child(1) {
  top: 0;
}

.btn-open span:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
}

.btn-open span:nth-child(3) {
  bottom: 0;
}

.btn-open.active span:nth-child(1) {
  top: 50%;
  opacity: 1;
  transform: skewY(23deg);
}

.btn-open.active span:nth-child(2) {
  opacity: 0;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.btn-open.active span:nth-child(3) {
  bottom: 34%;
  opacity: 1;
  transform: skewY(-25deg);
}





/* overlay
----------------------------------------------------------------------------------------------- */

.overlay {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9990;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  /*common*/
  width: 100%;
  height: 100%;
  transition: visibility 0.2s ease-in-out,
    opacity 0.2s 0.6s ease-in-out;
}

.overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: inherit;
  transition: all 0.2s ease-in-out;
}


.overlay::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.overlay.open::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.scroll-wrap {
  width: 100%;
  /* height: calc(100% - 60px); */
  height: 100%;
  margin-left: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.overlay-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
  padding-top: 80px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.open .overlay-inner {
  opacity: 1;
  transition: opacity 0.3s 0.3s ease-in-out;
}

/*list*/
.overlay-list {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.overlay-list>li {
  padding: 25px 0;
  border-bottom: 2px dotted var(--color-main-dark);
}

.overlay-title {
  display: block;
  margin-bottom: 15px;
  line-height: 1;
  font-size: 2.2rem;
  color: var(--color-main);
}

.overlay-list-in .item a:hover,
.overlay-list-in .item a.active {
  color: var(--color-main);
}


.overlay-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.overlay-btns li {
  width: 46%;
}

.overlay-btns li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 85px;
  gap: 10px;
  padding: 15px 15px 15px 50px;
  background-color: var(--color-main);
  border-radius: 20px 0 20px 0;
  color: #fff;
}

.overlay-btns li a .min {
  display: block;
  line-height: 1;
  font-size: 1.2rem;
  text-align: center;
}

.overlay-tel::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  background: url(../images/icon_tel_wh.png) no-repeat center / contain;
}

.overlay-tel .tel {
  line-height: 1;
  font-size: 3rem;
}

.overlay-contact::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  background: url(../images/icon_mail.png) no-repeat center / contain;
}

.overlay-contact .main {
  line-height: 1;
  font-size: 2.2rem;
}

.overlay-btns .overlay-top {
  width: 95%;
}

.overlay-btns .overlay-top a {
  height: auto;
  padding: 10px;
  margin-bottom: 15px;
  background-color: #677d8f;
  font-size: 1.6rem;
}



/* footer
----------------------------------------------------------------------------------------------- */
/*contact*/
.footer {
  position: relative;
  padding: 80px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}

.footer-inner .left {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-inner .right {
  max-width: 50%;
}

.footer-tel {
  display: flex;
  align-items: center;
  gap: 0 25px;
}

.footer-tel .link {
  position: relative;
  padding-left: 50px;
  line-height: 1;
  font-size: 4rem;
  font-weight: bold;
}

.footer-tel .link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/icon_tel.png) no-repeat center / contain;
}

.footer-tel .time {
  font-size: 1.6rem;
}

.copyright {
  display: block;
  margin-top: auto;
  font-size: 1.4rem;
}

.footer-sitemap-wrap {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px dotted var(--color-main-dark);
}

.footer-sitemap-wrap:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.footer-sitemap-wrap .cap {
  display: block;
  flex-shrink: 0;
  min-width: 170px;
  color: var(--color-main);
  font-weight: bold;
}

.footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-sitemap li {
  width: 45%;
  line-height: 1;
}

.footer-sitemap li.item-full {
  width: 100%;
}

.footer-sitemap li a {
  display: block;
  font-size: 1.6rem;
}


/* p-back
----------------------------------------------------------------------------------------------- */
.p-back {
  position: relative;
  margin-bottom: 30px;
}

.p-back .container {
  position: relative;
  padding-top: 120px;
}

.p-back .container::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  width: 85vw;
  height: 100%;
  background: #E8F7FF;
  background: linear-gradient(120deg, rgba(232, 247, 255, 1) 0%, rgba(206, 239, 255, 1) 100%);
  border-bottom-right-radius: 200px;
}

.p-back-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 0;
  gap: 0 100px;
}

.back-inner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.back-inner-content .title {
  line-height: 1;
  font-size: 5rem;
  font-weight: bold;
}

.back-inner-content .title-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  color: var(--color-main);
  font-size: 2.2rem;
  font-weight: bold;
}

.back-inner-content .title-sub::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-top: 5px;
  background-color: var(--color-main);
  border-radius: 5px 0 5px 0;
}

.back-inner-content .back-about {
  margin-top: 10px;
  line-height: 1.5;
}

.back-inner-img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}





/* コンテナボックス
----------------------------------------------------------------------------------------------- */
.page-wrap {
  background-color: var(--bg-main);
  overflow: hidden;
}

.page-container {
  position: relative;
  z-index: 1;
  width: calc(100% - 100px);
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 160px;
  padding-bottom: 100px;
}

.page-container::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  border-top-left-radius: 200px;
}

.inner-box {
  margin: 50px 0;
}

.inner-box .inner-btns {
  margin-top: 15px;
  /* margin-left: 15px; */
}

/*nav*/
.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 50px;
  margin-top: -80px;
  margin-bottom: 60px;
  padding: 0 20px;
  counter-reset: number 0;
}

.page-nav .item a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--color-main);
  font-weight: bold;
}

.page-nav .item a::before {
  counter-increment: number 1;
  content: "0"counter(number);
  color: var(--color-main);
}

.sec-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
  margin-bottom: 70px;
}

.sec-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-color: var(--color-main);
  border-radius: 5px 0 5px 0;
}

.sec-head-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 25px 0 50px;
  padding-left: 70px;
}

.sec-head-content .num {
  display: block;
  margin-bottom: 10px;
  line-height: 1;
  color: var(--color-main);
  font-size: 2.2rem;
  font-weight: bold;
}

.sec-head-content .title-max {
  margin: 0;
  color: var(--color-main);
}

.sec-head-img {
  flex-shrink: 0;
  max-width: 50%;
}

.sec-head-img img {
  width: 100%;
  height: auto;
}




/*policy-box*/
.policy-box {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 15px 30px;
  margin: 60px 0;
  padding: 50px;
  background-image: -moz-linear-gradient(0deg, rgb(220, 247, 255) 0%, rgb(209, 248, 240) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(220, 247, 255) 0%, rgb(209, 248, 240) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(220, 247, 255) 0%, rgb(209, 248, 240) 100%);
  border-radius: 60px 0 60px 0;
}

.contact .policy-box {
  margin: 0;
  background: var(--bg-main);
}

.policy-box .title {
  flex-shrink: 0;
  width: 20%;
}

.policy-box .title .title-mid {
  margin-bottom: 0;
}

.policy-box .content strong {
  font-weight: bold;
  color: var(--color-main);
}

/*detail-box*/
.detail-box {
  position: relative;
  padding: 40px 30px 30px;
  margin: 50px 0;
  border: 2px solid #ceefff;
  border-radius: 0 30px 30px 30px;
}

.detail-box .detail-title {
  position: absolute;
  left: -5px;
  top: -10px;
  padding: 5px;
  background-color: #fff;
  line-height: 1;
  color: var(--color-main);
  font-size: 2.2rem;
  font-weight: bold;
}

.detail-box .content>.list-disc {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
  font-size: 2.2rem;
}

.detail-box .content>.list-disc li {
  min-width: 45%;
  margin: 15px 0;
  line-height: 1.2;
}

.detail-box .content>.list-disc li::before {
  width: 8px;
  height: 8px;
}

.detail-box .content>.list-disc.col3 li {
  min-width: 30%;
}

.detail-box .detail-column {
  display: flex;
}

.detail-box .detail-column:not(:first-of-type) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #ceefff;
}

.detail-box .detail-column .left {
  flex-shrink: 0;
  width: 25%;
  font-size: 2.2rem;
}

.detail-box .detail-column .list-disc {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}

.detail-box .detail-column .list-disc li {
  min-width: 50%;
}

/*service-list*/
.service-bottom {
  background: url(../images/bg_dot_bl.jpg) repeat center;
}

.service-bottom .title-mid {
  font-size: 4rem;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 50px;
}

.service-list .item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 200px;
  gap: 20px;
  padding: 25px;
  background-color: #fff;
  border-radius: 30px 0 30px 0;
  box-shadow: 0 0 15px rgba(0, 38, 69, 0.3);
  line-height: 1;
  font-size: 2.2rem;
  color: var(--color-main);
}

.service-list .item a strong {
  display: block;
  margin-top: auto;
  text-align: center;
}

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


---  print 印刷用CSS


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media print {

  body {
    width: 991px;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    overflow: hidden;
  }

  .container {
    padding: 0 3%;
  }

  .fadeIn,
  .fadeInUp,
  .fadeInLeft,
  .fadeInRight,
  .fadeInDown,
  .zoomIn {
    opacity: 1 !important;
  }

  .header-nav {
    position: relative !important;
  }


}

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


---  min-width1920


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (min-width: 1920px) {}




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


---  max-width1500


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 1500px) {

  /* common
----------------------------------------------------------------------------------------------- */
  .p-back .container::before {
    right: -5vw;
    width: 100vw;
  }



  /* header
----------------------------------------------------------------------------------------------- */



  /* footer
----------------------------------------------------------------------------------------------- */


  /* back
----------------------------------------------------------------------------------------------- */


  /* コンテナボックス
----------------------------------------------------------------------------------------------- */
  .page-container::before {
    left: -50px;
    width: calc(100vw + 50px);
  }
}






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


---  1199px


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 1199px) {

  /* common
----------------------------------------------------------------------------------------------- */

  /*特定幅*/
  .inner-max {
    max-width: 720px;
  }

  .inner-min {
    max-width: 620px;
  }


  /* wrap
-------------------------------------------------------------------------------- */
  .wrap {
    padding: 0 25px;
  }




  /* header
----------------------------------------------------------------------------------------------- */
  .header {
    width: 95%;
    padding: 20px;
  }

  .nav-list {
    gap: 0 30px;
  }

  .nav-list>li {
    font-size: 1.6rem;
  }

  /* footer
----------------------------------------------------------------------------------------------- */
  .footer-tel {
    flex-direction: column;
  }

  .footer-sitemap-wrap {
    flex-direction: column;
    gap: 15px;
  }

  /* back
----------------------------------------------------------------------------------------------- */
  .p-back .container::before {
    right: 0;
  }

  /* コンテナボックス
----------------------------------------------------------------------------------------------- */
  .sec-head {
    flex-direction: column;
  }

  .sec-head-content {
    padding-left: 50px;
  }

  .sec-head-img {
    max-width: inherit;
    width: calc(100% - 50px);
    margin-left: auto;
  }

  /*policy-box*/
  .policy-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-box .title {
    width: auto;
  }

  .policy-box .title-mid br {
    display: none;
  }

}







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


--- 991px


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 991px) {



  /* flex
----------------------------------------------------------------------------------------------- */
  .flex-block-between .left,
  .flex-block-between .right {
    width: 100%;
  }


  /* common
----------------------------------------------------------------------------------------------- */
  /*特定幅*/
  .inner-max {
    max-width: 620px;
  }

  .inner-min {
    max-width: 520px;
  }



  /*title*/
  .title-col {
    font-size: 2rem;
  }

  .title-border {
    gap: 25px;
  }

  /*text*/
  .heading {
    font-size: 1.8rem;
  }


  /*btn*/



  /*リスト*/
  .list-3col {
    grid-template-columns: repeat(auto-fit, calc(50% - 15px));
  }

  .list-4col {
    grid-template-columns: repeat(auto-fit, calc(33.33% - 10px))
  }


  .c-difi-desc.list-2col {
    grid-template-columns: 1fr;
  }

  .c-difi-desc dl {
    width: 80%;
  }

  .list-images {
    grid-template-columns: 1fr 1fr;
  }



  /* header
----------------------------------------------------------------------------------------------- */
  .header {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 15px;
    border-radius: 15px;
  }

  .header-nav {
    display: none;
  }

  /* fixed-menu
----------------------------------------------------------------------------------------------- */
  .fixed-menu {
    display: block;
  }



  /* footer
----------------------------------------------------------------------------------------------- */
  .footer-sitemap li a {
    font-size: 1.4rem;
  }


  /* back
----------------------------------------------------------------------------------------------- */
  .p-back .container {
    padding-top: 100px;
  }

  .p-back-inner {
    padding: 80px 0;
  }

  .back-inner-content .title {
    font-size: 4rem;
  }


  .detail-box .detail-column {
    flex-direction: column;
  }

  .detail-box .detail-column .left {
    width: 100%;
  }

  .detail-box .detail-column .list-disc li {
    max-width: 100%;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
  }


}











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


--- 767px(スマホ、ipad縦以下)


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {

  body {
    font-size: 1.6rem;
  }

  p {
    font-size: 1.6rem;
  }


  section {
    margin-top: 80px;
    margin-bottom: 80px;
  }


  /* common
----------------------------------------------------------------------------------------------- */


  /*特定幅*/
  .inner-max,
  .inner-min {
    max-width: inherit;
  }


  /*title*/
  .title-max {
    font-size: 3.4rem;
  }

  .title-mid {
    font-size: 2.4rem;
  }

  .title-mid .sub {
    font-size: 1.6rem;
  }

  .title-min {
    font-size: 2rem;
  }


  /*btn*/
  .c-btn {
    font-size: 2rem;
  }

  /*link*/



  /*list*/

  .indent-list {
    margin: 15px 0 15px 0;
  }

  .list-3col {
    grid-template-columns: repeat(auto-fit, calc(50% - 8px));
  }

  .list-3col-max {
    grid-template-columns: repeat(auto-fit, calc(50% - 8px));
    gap: 15px;
  }

  .list-4col {
    grid-template-columns: repeat(auto-fit, calc(50% - 8px));
  }


  /*dl*/
  .c-difi {
    margin: 25px 0;
  }

  .c-difi-box {
    flex-direction: column;
  }

  .c-difi-team {
    padding: 15px;
  }

  .c-difi-team br {
    display: none;
  }

  .c-difi-desc {
    padding: 15px;
  }

  .difi-detail .c-difi-team {
    padding-bottom: 5px;
  }

  .difi-detail .c-difi-desc {
    padding-top: 5px;
  }


  /*table*/
  .table-responsive {
    position: relative;
    border: none;
  }

  .c-table {
    min-width: 100%;
    width: max-content;
  }

  .c-table-header .c-table-term {
    padding: 10px;
    font-size: 1.3rem;
  }

  .c-table-box .c-table-term {
    padding: 15px 10px;
  }

  .c-table-box .c-table-desc {
    padding: 15px 10px;
  }

  /*bg*/
  .bg-wh {
    padding-top: 100px;
    padding-bottom: 100px;
  }


  /*breadcrumb*/
  .breadcrumb-wrap {
    display: none;
    max-width: 80%;
    font-size: 1.2rem;
  }





  /* wrap
-------------------------------------------------------------------------------- */
  .wrap {
    padding: 0 20px;
  }


  /* header
----------------------------------------------------------------------------------------------- */
  .overlay-list-in li {
    width: 48%;
  }

  .overlay-list-in .item-full {
    width: 100%;
  }

  .overlay-tel::before,
  .overlay-contact::before {
    left: 20px;
    width: 30px;
    height: 30px;
  }



  /* footer
----------------------------------------------------------------------------------------------- */
  .footer {
    padding: 60px 0 30px;
    border-top: 2px solid var(--bg-main);
  }

  .footer-inner .left {
    align-items: center;
    width: 100%;
    gap: 25px;
  }

  .footer-inner .right {
    display: none;
  }

  .copyright {
    font-size: 1.2rem;
  }




  /* back
----------------------------------------------------------------------------------------------- */
  .p-back .container {
    padding-top: 80px;
  }

  .p-back .container::before {
    border-bottom-right-radius: 100px;
  }

  .p-back-inner {
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    min-height: 200px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .back-inner-content .title-sub {
    font-size: 1.8rem;
  }

  .back-inner-img {
    max-width: 120px;
    margin-top: 25px;
    margin-bottom: -45px;
    margin-left: auto;
  }

  /* コンテナボックス
----------------------------------------------------------------------------------------------- */
  /*nav*/
  .page-nav {
    gap: 5px 25px;
    margin-top: -40px;
  }

  /*policy*/
  .policy-box {
    padding: 25px;
    border-radius: 30px 0 30px 0;
  }

  .page-container {
    width: calc(100% - 40px);
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .page-container::before {
    left: -20px;
    border-top-left-radius: 100px;
  }

  .detail-box {
    margin: 25px 0;
    padding: 30px 20px 20px;
    border-radius: 0 15px 15px 15px;
  }

  .detail-box .detail-title {
    font-size: 1.8rem;
  }

  .detail-box .detail-column:not(:first-of-type) {
    padding-top: 20px;
    margin-top: 20px;
  }

  .detail-box .detail-column .left {
    font-size: 1.8rem;
  }

  .detail-box .detail-column .list-disc {
    width: 100%;
  }

  .detail-box .content>.list-disc {
    font-size: 1.6rem;
  }

  .detail-box .content>.list-disc li {
    margin: 8px 0;
  }

  .detail-box .content>.list-disc.col3 li {
    min-width: 40%;
  }

  .service-list {
    gap: 15px;
  }

}










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


--- 560px


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 560px) {
  body {
    font-size: 1.4rem;
  }

  p {
    font-size: 1.4rem;
  }

  /*visible*/
  .visible-xss {
    display: block !important;
  }

  .hidden-xss {
    display: none !important;
  }


  /*title*/
  .title-sec {
    gap: 10px;
  }

  .title-sec .main {
    font-size: 1.8rem;
  }

  .title-sec .sub {
    font-size: 4rem;
  }

  .title-max {
    margin-bottom: 20px;
    gap: 5px 20px;
    font-size: 3rem;
  }

  .title-mid {
    margin-bottom: 10px;
    font-size: 2.2rem;
  }

  .title-min {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }

  .title-icon {
    gap: 15px;
    margin-bottom: 15px;
    font-size: 2.2rem;
  }

  .title-icon::before {
    width: 22px;
    height: 22px;
    border-radius: 8px 0 8px 0;
  }

  .title-col {
    margin: 10px 0;
    font-size: 1.6rem;
  }

  .title-border {
    gap: 15px;
    margin-bottom: 25px;
  }


  /*btn*/
  .c-btn {
    padding-left: 25px;
    font-size: 1.6rem;
  }

  .c-btn-min {
    min-width: inherit;
    padding: 13px 60px 13px 15px;
    font-size: 1.4rem;
  }

  .c-btn-min::before {
    width: 20px;
  }

  .c-btn-contact {
    min-height: 100px;
    padding-left: 20px;
    padding-right: 70px;
  }

  .c-btn-contact::before {
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .c-btn-contact::after {
    right: 28px;
    width: 25px;
    height: 8px;
  }

  .c-btn-contact p {
    font-size: 1.2rem;
  }

  .arrow-none {
    padding: 15px 25px;
  }

  .icon-arrow {
    width: 60px;
    height: 60px;
  }

  .icon-arrow::after {
    width: 30px;
    height: 10px;
  }

  /*link*/
  .link-tel {
    padding-left: 40px;
    font-size: 3rem;
  }

  .link-tel::before {
    width: 30px;
    height: 30px;
  }


  /*list*/
  .list-2col,
  .list-3col,
  .list-3col-max {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .list-4col,
  .list-5col {
    grid-template-columns: repeat(auto-fit, calc(50% - 15px));
  }


  .list-images {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px 0;
  }

  .list-images .img {
    max-width: 80%;
    margin: 0 auto;
  }

  /*bg*/
  .bg-wh {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /*accordion*/
  .c-accordion-icon {
    right: 10px;
    width: 20px;
    height: 20px;
  }


  /* header
----------------------------------------------------------------------------------------------- */
  .header-top {
    max-width: 65%;
  }

  /* fixed-menu
----------------------------------------------------------------------------------------------- */
  .fixed-menu {
    right: 8px;
    top: 8px;
  }

  .header-menu-btn {
    right: 15px;
    top: 15px;
    width: 55px;
    height: 55px;
    border-radius: 10px;
  }

  .header-menu-btn strong {
    margin-top: 4px;
    font-size: 1rem;
  }

  .btn-open div {
    width: 30px;
    height: 18px;
  }

  .btn-open span {
    height: 3px;
  }



  /* overlay
----------------------------------------------------------------------------------------------- */
  .overlay-inner {
    padding-top: 50px;
  }

  .overlay-list li {
    width: 100%;
  }

  .overlay-list li a {
    display: block;
    padding: 5px 0;
    font-size: 1.6rem;
  }

  .overlay-list li a.active,
  .overlay-list li a:hover {
    color: var(--color-main);
  }

  .overlay-title {
    font-size: 1.8rem;
  }

  .overlay-btns li {
    width: 95%;
  }

  .overlay-contact .main {
    font-size: 2.2rem;
  }

  .overlay-tel::before,
  .overlay-contact::before {
    left: 25px;
    width: 40px;
    height: 40px;
  }


  /* footer
----------------------------------------------------------------------------------------------- */


  /* back
----------------------------------------------------------------------------------------------- */

  .p-back .title {
    font-size: 3rem;
  }


  /* コンテナ
----------------------------------------------------------------------------------------------- */
  .page-nav .item a {
    gap: 8px;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .sec-head::before {
    width: 5px;
  }

  .sec-head-content {
    padding-left: 25px;
  }

  .sec-head-img {
    width: calc(100% - 25px);
  }

  .service-bottom .title-mid {
    font-size: 3rem;
  }

  .service-list .item a {
    min-height: 150px;
    gap: 10px;
    padding: 20px 10px;
    font-size: 1.4rem;
  }

}






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


---  高さが小さいとき


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (orientation: landscape) and (max-height: 660px) {}