@charset "UTF-8";

:root {
  /* basic */
  --color-primary: #f0874e;
  --color-primary-light: #f9ead5;
  --color-primary-light2: #faf7ea;
  --color-primary-dark: #b09789;

  --color-secondary: #c4474a;
  --color-secondary-light: #ffe6e6;
  --color-secondary-light2: rgb(255, 240, 240);
  /* title */
  --title-primary: #065169;
  --title-primary-border: #fbc700;
  /* texture */
  --tex-primary: url(../images/tex_primary.jpg) repeat center;
  --tex-primary-light: url(../images/tex_primary-light.jpg) repeat center;
  --tex-secondary-light: url(../images/tex_secondary-light.jpg) repeat center;
  --tex-gray: url(../images/tex_gray.jpg) repeat center;
  /* button */
  --button-primary-bg: var(--color-primary);
  --button-secondary-bg: var(--color-primary);
  /* text */
  --text-primary: #111;
  --text-secondary: #767676;
  /* border */
  --border-primary: 2px dotted #b09789;
  /* link */
  --link-primary: #f0874e;
  /*shadow*/
  --shadow-max: 0 15px 30px rgba(0, 0, 0, 0.2);
  --shadow-min: 0 5px 15px rgba(0, 0, 0, 0.2);
  /*radiug*/
  --radius-max: 30px;
  --radius-mid: 20px;
  --radius-min: 10px;
  /* transition */
  --transition-primary: 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* **************************************************************
 general
*************************************************************** */
html {
  width: 100%;
  height: 100%;
  line-height: 1;
  font: inherit;
  font-size: 62.5%;
  /* 10px */
  -webkit-text-size-adjust: none;
}

body {
  width: 100%;
  height: 100%;
  background-color: #fff;
  line-height: 1.6;
  color: var(--text-primary);
  font-family: "Zen Maru Gothic", "Open Sans", Helvetica, "Microsoft Yahei", "PingHei", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  font-size: inherit;
  font-weight: 700;
  text-wrap: auto;
}

p {
  margin: 0;
  text-align: justify;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition-primary);
}

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

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 {
  margin: 0;
  padding: 0;
}

button,
input[type=submit] {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date] {
  padding: 10px 25px;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 50rem;
  color: var(--text-primary);
}

input[type=text]:focus,
input[type=text]:target,
input[type=email]:focus,
input[type=email]:target,
input[type=tel]:focus,
input[type=tel]:target,
input[type=date]:focus,
input[type=date]:target {
  border-color: var(--color-blue);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

textarea {
  width: 100%;
  height: 250px;
  padding: 20px 25px;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-mid);
  color: var(--text-primary);
}

textarea:focus,
textarea:target {
  border-color: var(--color-blue);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

select {
  position: relative;
  padding: 10px 60px 10px 25px;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 50rem;
  color: var(--text-primary);
  appearance: none;
  /* 標準の矢印を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
}

select:focus,
select:target {
  border-color: var(--color-blue);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

section {
  position: relative;
  margin-top: 150px;
  margin-bottom: 150px;
}

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

/* ------------------------------------
 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;
}

/* ------------------------------------
 common style
------------------------------------ */
/* container */
.container {
  width: 61.41%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.container-max {
  width: 78.74%;
  max-width: 1500px;
  /* margin-left: 11%; */
  /* margin-right: 11%; */
  margin-left: auto;
  margin-right: auto;
}


.container-summary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1170px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.container-summary p:not(:first-child) {
  margin-top: 30px;
}

.container-summary p strong {
  color: var(--color-blue);
}

.container-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px 50px;
  margin: 50px auto;
}

.container-btns:last-of-type {
  margin-bottom: 0;
}

.container-btns .comment {
  display: block;
  width: 100%;
}

.container-inner {
  margin-top: 100px;
  margin-bottom: 100px;
}

.container-inner:first-of-type {
  margin-top: 0;
}

.container-inner:last-of-type {
  margin-bottom: 0;
}

/*br*/
.visible-xss {
  display: none;
}

/* button */
[class^=btn-] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 280px;
  gap: 10px;
  padding: 15px 15px 15px 20px;
  background-color: #fff;
  border: var(--border-primary);
  border-radius: var(--radius-min);
  line-height: 1.1;
  color: var(--text-primary);
  font-weight: 700;
  transition: all var(--transition-primary);
}

[class^=btn-]:hover {
  opacity: 1;
  color: var(--color-primary);
  cursor: pointer;
}

.btn-mid {
  border-radius: 15px;
}

.btn-max {
  justify-content: center;
  width: fit-content;
  min-width: 45%;
  min-height: 100px;
  gap: 20px;
  padding: 20px 25px;
  border-radius: 15px;
  font-size: 2.2rem;
}

.btn-max .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.btn-min {
  min-width: 170px;
  padding: 10px 10px 10px 20px;
  border-radius: 10px;
  font-size: 1.6rem;
}

.btn-min [class^=icon-arrow] {
  width: 25px;
  height: 25px;
  border-radius: 5px;
}

.btn-min [class^=icon-arrow]::after {
  right: 20px;
  width: 4px;
  height: 8px;
}

/*link*/
.link-arrow {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 5px 20px;
  font-weight: 700;
}

.link-blank {
  display: inline-block;
  text-decoration: none;
}

.link-blank:after {
  content: "\f08e";
  margin-left: 10px;
  font-size: 1.8rem;
  font-family: var(--font-icon);
  font-weight: 700;
}

.link-file {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: underline;
}

.link-file::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.link-text {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
}


/*icon*/
[class^=icon-arrow] {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-left: auto;
  background-color: var(--color-primary-light);
  border-radius: 10px;
  transition: scale var(--transition-primary),
    background-color var(--transition-primary);
}

[class^=icon-arrow]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 6px;
  height: 12px;
  background: url(../images/icon_arrow_r_or.svg) no-repeat center;
}

button:hover [class^=icon-arrow],
a:hover [class^=icon-arrow] {
  scale: 1.2;
}

.icon-arrow-primary {
  background-color: var(--color-primary);
}

.icon-arrow-primary::after {
  background-image: url(../images/icon_arrow_r_wh.svg);
}

.icon-arrow-wh {
  background-color: #fff;
}

.icon-arrow-down::after {
  rotate: 90deg;
}

.icon-file::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.icon-pdf::before {
  background-image: url(../images/icon_file_pdf.png);
}

.icon-doc::before {
  background-image: url(../images/icon_file_doc.png);
}

.icon-xlsx::before {
  background-image: url(../images/icon_file_xlsx.png);
}

.icon-close {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-left: auto;
  background-color: var(--color-primary-light);
  border-radius: 10px;
  transition: scale var(--transition-primary);
}

.icon-close::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 12px;
  height: 12px;
  background: url(../images/icon_close.png) no-repeat center / contain;
  rotate: 45deg;
}

.icon-plus {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-left: auto;
  background-color: var(--color-primary-light);
  border-radius: 10px;
  transition: scale var(--transition-primary);
}

.icon-plus::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 12px;
  height: 12px;
  background: url(../images/icon_close.png) no-repeat center / contain;
  rotate: 0;
}

.is-active .icon-plus::before {
  rotate: 45deg;
}


/* title */
.title-sec {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 80px;
  font-size: 4rem;
}

.title-sec::before {
  content: "";
  position: absolute;
  left: -100px;
  top: -50px;
  width: 180px;
  height: 124px;
  background: url(../images/bg_title_sec.png) no-repeat center / contain;
}

.title-sec .sub {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  line-height: 1;
  color: var(--color-primary);
  font-size: 1.8rem;
}

.title-sec .sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url(../images/icon_title_sub.svg) no-repeat center / contain;
}

.title-sec .main {
  position: relative;
  z-index: 1;
  line-height: 1.3;
}


.title-max {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  line-height: 1.3;
  font-size: 5rem;
}

.title-max .sub {
  position: relative;
  z-index: 1;
  line-height: 1;
  color: var(--color-primary);
  font-size: 2.2rem;
}

.title-mid {
  display: block;
  margin-bottom: 40px;
  line-height: 1.3;
  font-size: 3rem;
}

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

.title-col {
  display: block;
  margin: 20px 0;
  line-height: 1.3;
  font-size: 2.2rem;
  text-align: center;
}

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

.title-icon .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.title-border {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-left: 40px;
  gap: 0 20px;
  line-height: 1.2;
  font-size: 3rem;
}

.title-border::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 50rem;
}

.title-border .right {
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: initial;
}

.title-border.text-secondary::before {
  background-color: var(--color-secondary);
}

.title-border.text-green::before {
  background-color: #189e67;
}

.title-center {
  text-align: center;
  justify-content: center;
  align-items: center;
}


/*list*/
.list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: flex-start;
  gap: 50px;
}

.list-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 50px;
}

.list-4col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 25px;
}

.list-5col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  gap: 25px;
}


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

.list-item-full {
  grid-column: 1 / -1;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-check li {
  position: relative;
  padding-left: 45px;
  line-height: 1.2;
}

.list-check li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  color: var(--color-blue);
  font-family: var(--font-icon);
  font-weight: 700;
  font-size: 3rem;
}

.list-number {
  list-style: decimal;
  padding-left: 3rem;
}

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

.list-disc {
  list-style: disc;
  padding-left: 3rem;
}

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



/*dl*/

.difi {
  margin: 50px 0;
}

.difi-box {
  display: flex;
  gap: 20px;
  border-top: 2px dotted #ccc;
}

.difi-box:last-child {
  border-bottom: 2px dotted #ccc;
}

.difi-team {
  flex-shrink: 0;
  min-width: 165px;
  padding: 30px 0;
  line-height: 1.5;
  font-weight: 700;
}

.difi-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 30px 0;
  margin: 0;
  line-height: 1.5;
}

.difi-desc p {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
}

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

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

.difi-desc p span.small {
  font-size: 1.6rem;
}

.difi-desc dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 20px;
}

.difi-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px !important;
}

.difi-detail .difi-team {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
  padding: 10px 25px;
  background-color: var(--color-primary-light2);
  text-align: center;
}

.difi-detail .difi-desc {
  padding: 0;
}

.difi-detail .difi-desc p a {
  color: var(--color-main);
}

.difi-table-box {
  display: flex;
  background-color: #fff;
  border-top: 1px solid #b09789;
}

.difi-table-box:last-child {
  border-bottom: 1px solid #b09789;
}

.difi-table-team {
  min-width: 175px;
  padding: 25px 30px;
  background-color: var(--color-primary-light);
  font-weight: 700;
}

.difi-table-desc {
  padding: 25px 40px;
}

.difi-table-desc p {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
}

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

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

.difi-table-desc .small {
  font-size: 1.6rem;
}

.difi-table-desc dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 20px;
  margin: 15px 0;
}

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


/*table*/
.table__wrap {
  position: relative;
  overscroll-behavior: none;
}

.table__wrap:first-of-type {
  margin-top: 0;
}

.table__caution {
  width: fit-content;
  padding: 5px 10px;
  background-color: var(--color-secondary);
  border-radius: 50rem;
  color: #fff;
  font-size: 90%;
}

.table__container {
  position: relative;
}

.table__header th {
  position: sticky;
  top: 0;
  z-index: 2;
  white-space: nowrap;
}

.common-table-wrap {
  overflow: auto;
}

.common-table {
  width: 100%;
  letter-spacing: 0;
}

.common-table__row {
  border-bottom: 1px solid #b09789;
}

tbody .common-table__row:first-child {
  border-top: 1px solid #b09789;
}

.common-table__header {
  padding: 20px 10px;
  background-color: var(--color-primary-light);
  border-top: none;
  border-bottom: 20px solid transparent;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}

.common-table__header:not(:first-of-type) {
  border-left: var(--border-primary);
}

.common-table__header .min,
.common-table__cell .min {
  display: inline-block;
  font-size: 1.6rem;
}

.common-table__cell {
  padding: 20px;
  line-height: 1.5;
  text-align: right;
}

td.common-table__cell:not(:first-of-type) {
  border-left: var(--border-primary);
}

th.common-table__cell {
  border-left: none;
  background-color: var(--color-primary-light);
  text-align: left;
}


.table__inner-difi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px 15px;
  padding: 20px;
  margin: 0 -20px;
  border-bottom: var(--border-primary);
}

.table__inner-difi:first-child {
  margin-top: -20px;
}

.table__inner-difi:last-child {
  margin-bottom: -20px;
  border-bottom: none;
}

.table__inner-difi dt {
  text-align: left;
}

.short-table__inner-difi {
  display: flex;
  gap: 20px;
}

.short-table__inner-difi .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  background-color: var(--color-primary-light2);
}

.short-table__inner-difi dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.short-table__inner-difi dl dt {
  text-align: left;
}

.tag-scroll {
  position: relative;
  display: block;
  gap: 10px;
  padding: 10px 10px 10px 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 90%;
}

.tag-scroll::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  translate: 0 -50%;
  display: block;
  width: 25px;
  height: 30px;
  background: url(../images/icon_handslide.png) no-repeat center / contain;
}



/*tab*/
.tabs-wrap {
  display: flex;
  align-items: center;
  gap: 15px 30px;
  margin: 50px 0 30px;
}

.tabs-wrap .title-icon {
  display: flex;
  gap: 10px;
}

.tabs-wrap .title-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.tabs-nav {
  position: relative;
  display: flex;
  background-color: #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
}

.tab {
  position: relative;
  min-width: 200px;
  text-align: center;
  padding: 10px 20px;
  border: 2px dotted transparent;
  border-radius: 15px;
  cursor: pointer;
  z-index: 1;
  white-space: nowrap;
  transition: all var(--transition-primary);
}

.tab:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.tab.active {
  background-color: #fff;
  border-color: #b09789;
  color: var(--color-primary);
  font-weight: 700;
}

.tab-content-group {
  margin-top: 30px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


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

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

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

.text-content {
  display: block;
  margin: 30px 0;
  line-height: 2;
}

.text-content:first-of-type {
  margin-top: 0;
}

.text-content:last-of-type {
  margin-bottom: 0;
}

.text-asterisk {
  display: inline-block;
  margin: 5px 0;
  padding-left: 1.8rem;
  text-indent: -1.8rem;
  line-height: 1.5;
}

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

.text-nowrap {
  white-space: nowrap;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-green {
  color: #189e67;
}

.text-indent {
  display: block;
  padding-left: 1em;
}



/* bg */
[class*=bg-] {
  padding-top: 150px;
  padding-bottom: 150px;
  margin-top: 0;
  margin-bottom: 0;
}

[class*=bg-]>section {
  margin-top: 0;
}

[class*=bg-] .page__inner:first-of-type {
  padding-top: 0;
}

[class*=bg-] .page__inner:first-of-type:before {
  display: none;
}

.bg-primary {
  background-color: var(--color-primary);
  color: #fff;
}

.bg-primary [class^=title-] {
  color: #fff;
}

.bg-primary-light {
  background: url(../images/tex_primary-light2.jpg) repeat center;
}

.bg-dot {
  background: url(../images/bg_dot.jpg) repeat center;
}



.bg-wave-primary {
  position: relative;
  background: url(../images/tex_primary-light.jpg);
}

.bg-wave-primary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150px;
  background: url(../images/recruit/wave_primary_top.jpg) repeat-x top center / 100%;
}

.bg-wave-primary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: url(../images/recruit/wave_primary_top.jpg) repeat-x top center / 100%;
  rotate: 180deg;
}

.bg-wave-secondary {
  position: relative;
  background: url(../images/tex_secondary-light.jpg);
}

.bg-wave-secondary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150px;
  background: url(../images/recruit/wave_secondary_top.jpg) repeat-x top center / 100%;
}

.bg-wave-secondary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: url(../images/recruit/wave_secondary_top.jpg) repeat-x top center / 100%;
  rotate: 180deg;
}


/*column*/
.column-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 55px;
  margin: 50px auto;
}

.column-container .column-title {
  max-width: 50%;
}

.column-container .column-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 44%;
  text-align: center;
}



/*accordion*/
.trigger-acc {
  position: relative;
  z-index: 0;
  display: flex;
  padding: 30px 60px 30px 30px;
  line-height: 1.3;
  font-size: 2.2rem;
  transition: color var(--transition-primary);
}

.trigger-acc:hover {
  cursor: pointer;
  color: var(--color-primary);
}

.trigger-acc::after {
  content: "+";
  font-family: var(--font-icon);
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-primary-light);
  border-radius: 10px;
  line-height: 1;
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  transition: all var(--transition-primary);
}

.trigger-acc:hover::after {
  scale: 1.2;
}

.trigger-acc.is-active::after {
  content: "×";
}

.acc-wrap {
  margin: 50px 0;
  border: var(--border-primary);
  border-radius: var(--radius-mid);
}

.acc-content {
  display: none;
  padding: 0 30px 30px;
}

/*expand*/
.trigger-expand:hover {
  cursor: pointer;
}

.trigger-expand.is-active .btn-mid {
  background-color: #eeeeee;
}

.trigger-expand.is-active .btn-mid .icon-plus {
  background-color: #fff;
}

.expand-content {
  display: none;
}



/*swiper*/
.slider__wrap {
  overflow: hidden;
}

.slider__wrap .swiper-pagination-bullets {
  text-align: center;
}

.slider__wrap .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.slider__wrap .swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
}

.swiper-wrapper:hover {
  cursor: -webkit-grab;
  cursor: grab;
}


/*video*/
.trigger-video {
  position: relative;
}

.trigger-video:hover {
  cursor: pointer;
}

.trigger-video:hover .icon-play {
  scale: 1.2;
}

.icon-play {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all var(--transition-primary);
  transition: all var(--transition-primary);
}

.icon-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}

.icon-play::after {
  content: "";
  position: absolute;
  left: 53%;
  top: 50%;
  translate: -50% -50%;
  width: 28%;
  height: 30%;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/*read more*/
.more-wrap {
  position: relative;
  overflow: clip;
  -webkit-transition: height var(--transition-primary);
  transition: height var(--transition-primary);
}

.more-content {
  position: relative;
}

.trigger-more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: var(--link-primary);
  font-weight: bold;
}

.trigger-more::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--color-blue-light2);
  border-radius: 50%;
  line-height: 1;
  color: var(--link-primary);
  font-family: var(--font-icon);
  font-weight: 700;
  font-size: 2rem;
  -webkit-transition: all var(--transition-primary);
  transition: all var(--transition-primary);
}

.trigger-more:hover {
  cursor: pointer;
}

.trigger-more:hover::after {
  scale: 1.2;
}

.trigger-more.open::after {
  rotate: 45deg;
}

/*flow*/
.flow-item {
  position: relative;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 230px;
}

.flow-item::before {
  content: "";
  position: absolute;
  top: 75px;
  left: -50%;
  z-index: -1;
  width: 100%;
  height: 6px;
  background-color: var(--link-primary);
}

.flow-item:first-of-type::before {
  display: none;
}

.flow-item .item-icon {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 25px;
}

.flow-item .item-icon::before {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  line-height: 1;
  color: var(--color-blue);
  font-size: 2.4rem;
  font-weight: bold;
}

.flow-item .item-icon .inner {
  border-radius: 50%;
  overflow: clip;
}

.flow-item .item-icon .inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.flow-item .title {
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--color-blue);
  text-align: center;
}

.flow-item .summary {
  display: block;
  line-height: 1.2;
  text-align: center;
}

.flow-list-icon {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 50px 2%;
  counter-reset: number 0;
}

.flow-list-img {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  counter-reset: number 0;
}

.flow-list-img .flow-item {
  width: calc(33.33% - 80px);
  max-width: 350px;
}

.flow-list-img .flow-item::before {
  top: 35%;
}

.flow-list-img .flow-item:nth-of-type(4)::before {
  display: none;
}

.flow-list-img .flow-item:nth-of-type(5)::before {
  display: block;
}

.flow-list-img .flow-item .item-icon::before {
  top: 20px;
  width: 60px;
  height: 60px;
  font-size: 3rem;
}

.flow-list-img .flow-item .summary {
  max-width: 350px;
}

/*modal*/
dialog {
  border: 0 !important;
  border-color: transparent !important;
  outline: 0 !important;
  outline-color: transparent !important;
  overscroll-behavior-y: contain;
}

.dialog-wrap {
  position: fixed;
  display: flex;
  inset: 0;
  max-width: 1170px;
  width: 90%;
  max-height: 95%;
  margin: auto;
  padding: 0;
  background-color: #fff;
  border-radius: var(--radius-mid);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  animation-fill-mode: forwards;
  animation-duration: 200ms;
  animation-timing-function: ease-out;
}

.dialog-wrap:focus,
.dialog-wrap:focus-visible {
  border: 0 !important;
  border-color: transparent !important;
  outline: 0 !important;
  outline-color: transparent !important;
  box-shadow: none !important;
}

.dialog-wrap::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 200ms;
  animation-timing-function: ease-out;
}

.dialog-wrap::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 200ms;
  animation-timing-function: ease-out;
}

.dialog-wrap[open] {
  opacity: 1;
  visibility: visible;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 400ms;
  animation-timing-function: ease-out;
}

.dialog-scroll {
  width: 100%;
  overflow-y: auto;
}

.dialog-content {
  padding: 50px;
}

.dialog-btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  display: inline-block;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-left: auto;
  background-color: var(--color-primary-light);
  border-radius: 10px;
}

.dialog-btn-close::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 20px;
  height: 20px;
  background: url(../images/icon_close.png) no-repeat center / contain;
  rotate: 45deg;
}


/*panel*/
.panel {
  display: flex;
  min-height: 145px;
  gap: 0 30px;
  margin: 20px 0;
  background: var(--tex-primary-light);
  border-radius: var(--radius-mid);
}

.panel:first-of-type {
  margin-top: 50px;
}

.panel:last-of-type {
  margin-bottom: 50px;
}

.panel__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  padding: 30px;
  min-width: 230px;
  font-size: 2.2rem;
  text-align: center;
}

.panel__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 2px;
  height: calc(100% - 60px);
  border-right: var(--border-primary);
}

.panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 30px;
}

.panel__content p {
  line-height: 1.5;
}

.panel__content .max {
  font-size: 2rem;
}

.panel-og {
  background: var(--tex-primary-light);
}

.panel-pl {
  background: var(--tex-secondary-light);
}

.panel-gr {
  background: url(../images/tex_green.jpg);
}


.shokibo-panel__difi {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 25px 20px;
}

.shokibo-panel__difi .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  border-radius: 5px;
  font-size: 2.2rem;
  color: #fff;
}

.shokibo-panel__difi .tag:nth-of-type(1) {
  background-color: #189e67;
}

.shokibo-panel__difi .tag:nth-of-type(2) {
  background-color: #f0874e;
}

.shokibo-panel__difi .tag:nth-of-type(3) {
  background-color: #187d9e;
}


/**/
.lum-lightbox {
  z-index: 99999;
}

.lum-close-button {
  width: 35px !important;
  height: 35px !important;
  background-color: #000 !important;
}

.lum-close-button:after,
.lum-close-button:before {
  height: 35px !important;
  left: 17px !important;
}



/* **************************************************************
 header
*************************************************************** */
.header {
  position: relative;
  z-index: 1000;
  width: 100%;
  height: 160px;
  background-color: #fff;
}

.header__container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  /* column-gap: 2.6vw; */
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 30px;
  gap: 5px 15px;
  color: var(--text-primary);
}

.header__name {
  font-size: 2.6rem;
}

.header__name .min {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}


.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2.6vw;
  padding-right: 135px;
}

.header__nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  -webkit-column-gap: 2.6vw;
  -moz-column-gap: 2.6vw;
  column-gap: 2.4vw;
}

.header__nav-parent {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  -webkit-transition: all var(--transition-primary);
  transition: all var(--transition-primary);
}

.header__nav-parent .parent-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 0.9;
  color: initial;
  font-size: clamp(1.6rem, 1.1vw, 2rem);
  font-weight: normal;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
}

.header__nav-parent .parent-item .item {
  position: relative;
  display: block;
}

.header__nav-parent .parent-item:hover,
.header__nav-parent .parent-item.is-active {
  color: var(--color-primary);
}

.header__nav-parent .trigger-child {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 20px;
}

.header__nav-parent .trigger-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  rotate: 90deg;
  width: 6px;
  height: 11px;
  background: url(../images/icon_arrow_r_or.svg) no-repeat center / contain;
  -webkit-transition: rotate var(--transition-primary);
  transition: rotate var(--transition-primary);
}

.header__nav-parent:hover {
  cursor: pointer;
}

.header__nav-parent:hover .parent-item {
  color: var(--color-primary);
  -webkit-transition: color var(--transition-primary);
  transition: color var(--transition-primary);
}

.header__nav-parent:hover .parent-item::before {
  width: 100%;
}

.header__nav-parent:hover .parent-item a {
  color: var(--color-primary);
}

.header__nav-parent:hover .trigger-child::after {
  rotate: -90deg;
}


.header__nav-drop {
  position: absolute;
  top: 100px;
  left: 50%;
  translate: -50%;
  width: fit-content;
  margin-top: -10px;
  box-sizing: border-box;
  background-color: #fff;
  border: var(--border-primary);
  border-radius: var(--radius-mid);
  opacity: 0;
  clip-path: polygon(0 0, calc(100% + 1px) 0, calc(100% + 1px) 0, 0 0);
  transition: margin-top 0.2s var(--transition-primary),
    opacity 0.2s var(--transition-primary),
    clip-path 0.2s var(--transition-primary);
  overflow: hidden;
}

.header__nav-drop.is-open {
  margin-top: 0;
  opacity: 1;
  clip-path: polygon(0 0, calc(100% + 1px) 0, calc(100% + 1px) calc(100% + 1px), 0% calc(100% + 1px));
  transition: margin-top 0.2s var(--transition-primary),
    opacity 0.2s var(--transition-primary),
    clip-path 0s var(--transition-primary);
}

.header__nav-drop .nav-child-title {
  display: block;
  min-width: 80px;
  padding: 15px;
  background-color: var(--color-primary-light);
  color: var(--color-blue);
  font-weight: bold;
  font-family: var(--font-title);
}

.header__nav-child {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 20px;
}

.header__nav-child .child-item a {
  position: relative;
  display: block;
  padding: 8px 0 8px 15px;
  border-radius: 50rem;
  line-height: 1;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}

.header__nav-child .child-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: scale var(--transition-primary);
}

.header__nav-child .child-item a.is-active,
.header__nav-child .child-item a:hover {
  color: var(--link-primary);
  opacity: 1;
}

.header__nav-child .child-item a.is-active::before,
.header__nav-child .child-item a:hover::before {
  scale: 1.7;
}

/* ------------------------------------
 tel
------------------------------------ */
.header__tel .link {
  position: relative;
  display: block;
  padding-left: 35px;
  color: var(--color-primary);
  font-size: clamp(3rem, 1.85vw, 3.6rem);
  font-weight: 700;
  white-space: nowrap;
}

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


/* **************************************************************
 hamburger
*************************************************************** */

.header__hamburger {
  position: fixed;
  right: 0;
  top: 0;
}


.trigger-hamburger {
  position: absolute;
  right: 15px;
  top: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: var(--radius-min);
  transition: top var(--transition-primary);
}

.trigger-hamburger:hover {
  cursor: pointer;
}

.trigger-hamburger .inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 51px;
  height: 32px;
}


.trigger-hamburger .inner span {
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--link-primary);
  border-radius: 50rem;
  transition: all var(--transition-primary);
  transform-origin: center;
}

.trigger-hamburger .inner span::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 4px;
  height: 4px;
  background-color: var(--color-primary);
  box-shadow: 2px 0 0 #fff,
    3px -2px 0 #fff,
    3px 2px 0 #fff;
  border-radius: 50%;
}

.trigger-hamburger .inner .buns:first-of-type {
  top: 0;
}

.trigger-hamburger .inner .patty {
  top: calc(50% - 1.5px);
}

.trigger-hamburger .inner .buns:last-of-type {
  bottom: 0;
}

.trigger-hamburger.is-active .inner .buns:first-of-type {
  top: calc(50% - 3px);
  rotate: 35deg;
}

.trigger-hamburger.is-active .inner .patty {
  opacity: 0;
}

.trigger-hamburger.is-active .inner .buns:last-of-type {
  bottom: 50%;
  rotate: -35deg;
}

.trigger-hamburger .text {
  display: block;
  margin-top: 8px;
  margin-bottom: -8px;
  line-height: 1;
  font-size: 1.5rem;
  font-style: normal;
}

.is-open .trigger-hamburger,
.is-scroll .trigger-hamburger {
  top: 15px;
}



/* ------------------------------------
 overlay
------------------------------------ */
.hamburger-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(59, 23, 4, 0.2);
  backdrop-filter: blur(2px);
}

.in-hamburger {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-primary);
}

.in-hamburger.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: inherit;
}

.hamburger-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  min-width: 1150px;
  max-width: 60%;
  max-height: 100%;
  margin-left: auto;
  padding: 140px 80px 80px;
  gap: 50px;
  background-color: #fff;
  border-radius: 50px 0 0 50px;
  translate: 50px;
  /* clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); */
  transition: translate var(--transition-primary);
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

.is-open .hamburger-inner {
  translate: 0;
  /* clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%); */
}


.hamburger-head {
  position: absolute;
  left: 80px;
  top: 50px;
  display: flex;
  align-items: center;
  gap: 10px 20px;
}

.hamburger-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger-logo img {
  flex-shrink: 0;
}

.hamburger-logo .name {
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: 700;
}

.hamburger-logo .name .min {
  display: block;
  font-size: 1.3rem;
}

.hamburger-tel .link {
  position: relative;
  display: block;
  padding-left: 35px;
  line-height: 1;
  font-size: 2.6rem;
  font-weight: 700;
}

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

.hamburger-sns {
  display: flex;
}


.hamburger-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 40px;
  padding-right: 20%;
}

.hamburger-list::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  z-index: 2;
  width: 230px;
  height: 230px;
  background: url(../images/acc_menu.png) no-repeat center / contain;
}

.hamburger-list .item {
  width: calc(33% - 30px);
}

.hamburger-list .item a {
  position: relative;
  display: block;
  padding-left: 20px;
  line-height: 1.2;
  color: var(--text-primary);
  font-size: 2rem;
}

.hamburger-list .item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: scale var(--transition-primary);
}

.hamburger-list .item a:hover,
.hamburger-list .item.is-active a {
  opacity: 1;
  color: var(--color-primary);
}

.hamburger-list .item a:hover::before,
.hamburger-list .item.is-active a::before {
  scale: 1.7;
}

.hamburger-service {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hamburger-service .item {
  width: calc(50% - 8px);
  background: var(--tex-primary-light);
  border-radius: var(--radius-min);
  overflow: hidden;
}

.hamburger-service .item.is-active {
  background: url(../images/tex_primary-light_active.jpg);
}


.hamburger-service .item a {
  display: flex;
  align-items: center;
  color: var(--text-primary);

}

.hamburger-service .item a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.hamburger-service .item .img {
  position: relative;
  flex-shrink: 0;
  width: 115px;
  height: 100%;
  border-radius: var(--radius-min);
  overflow: hidden;
}

.hamburger-service .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hamburger-service .item .title {
  padding: 10px 17px;
  line-height: 1.2;
  font-size: 2.2rem;
  font-weight: 700;
}

.hamburger-service .item .icon-arrow {
  margin-left: auto;
  margin-right: 20px;
  background-color: #fff;
}


/* **************************************************************
 footer
*************************************************************** */
.footer {
  overflow: clip;
}

.footer__info {
  padding-top: 100px;
  background: var(--tex-primary-light);
}

/* ------------------------------------
 contact
------------------------------------ */
.footer__contact {
  display: flex;
  padding: 50px 0;
  background-color: #fff;
  border-radius: 50px;
}

.footer__contact .inner {
  width: 50%;
}

.footer__tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-right: var(--border-primary);
}

.footer__tel .link {
  position: relative;
  display: block;
  padding-left: 60px;
  line-height: 1;
  color: var(--text-primary);
  font-size: 5.2rem;
  font-weight: 700;
}

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

.footer__tel .hours {
  display: flex;
  align-items: center;
  gap: 5px 12px;
}

.footer__tel .hours .tag {
  padding: 4px 8px;
  border-radius: 5px;
  background-color: var(--color-primary-light);
  line-height: 1;
  color: var(--color-primary);
  font-size: 1.4rem;
}

.footer__mail {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__mail .link-arrow {
  justify-content: center;
}

.footer__mail .icon-arrow {
  margin-left: 0;
}

.footer__mail .text {
  color: var(--text-primary);
  font-size: 2.6rem;
}

/*info*/
.footer__site {
  position: relative;
  padding: 50px 0;
}

.footer__site::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -30px;
  z-index: 1;
  width: 195px;
  height: 163px;
  background: url(../images/acc_footer_01.png) no-repeat center / contain;
}

.footer__site::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: 1;
  width: 82px;
  height: 159px;
  background: url(../images/acc_footer_02.png) no-repeat center / contain;
}

.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  gap: 5px 15px;
  color: var(--text-primary);
}

.footer__name {
  line-height: 1.2;
  font-size: 2.6rem;
}

.footer__name .min {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}

.footer__address {
  display: block;
  margin: 30px 0;
  line-height: 1.2;
  text-align: center;
}

.footer__info-list {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}


/* ------------------------------------
 sitemap
------------------------------------ */
.footer__container {
  position: relative;
  padding: 70px 0;
}

.footer__sitemap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer__sitemap .sitemap-title {
  display: block;
  margin-bottom: 25px;
  line-height: 1;
  color: var(--color-primary);
}

.footer__sitemap .sitemap-nav {
  display: flex;
  flex-direction: column;
  min-width: 145px;
  gap: 20px 0;
}

.footer__sitemap .sitemap-nav .child-item a {
  position: relative;
  display: block;
  padding-left: 15px;
  line-height: 1.2;
  color: var(--text-primary);
  text-decoration: none;
}

.footer__sitemap .sitemap-nav .child-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-primary-dark);
}

.footer__sitemap .sitemap-nav .child-item a:hover {
  color: var(--color-primary);
}

.footer__sitemap .service-kaigo .sitemap-nav .child-item a::before {
  background-color: var(--color-primary);
}


.footer__sitemap .service-hoiku .sitemap-title {
  color: var(--color-secondary);
}

.footer__sitemap .service-hoiku .sitemap-nav .child-item a::before {
  background-color: var(--color-secondary);
}

.footer__copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  line-height: 1;
  font-size: 1.4rem;
  text-align: right;
}

.footer__copyright small {
  font-size: 1.4rem;
}

.logos__group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 30px;
}

/* **************************************************************
 wrap
*************************************************************** */
.main__wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  overflow-x: clip;

}

/* ------------------------------------
 article
------------------------------------ */
.article__wrap {
  position: relative;
  width: 100%;
}

.article__wrap .container,
.article__wrap .container-max {
  margin-left: 11%;
  margin-right: 11%;
}

/* ------------------------------------
 aside
------------------------------------ */
.trigger-aside {
  display: none;
  pointer-events: all;
}

.trigger-aside:hover {
  cursor: pointer;
}

.side__wrap {
  position: absolute;
  right: 0;
  top: 200px;
  z-index: 100;
  width: 20%;
  max-width: 400px;
  pointer-events: none;
}

.side__list {
  padding: 30px;
  padding: 7.5%;
  background-color: #fff;
  border-radius: 20px 0 0 20px;
  pointer-events: all;
}

.side__list .item:not(:last-child) {
  border-bottom: var(--border-primary);
}

.side__list .item a {
  width: 100%;
  padding: 15px 0;
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: 400;
}

.side__list .item a .text {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  opacity: 0.5;
  transition: var(--transition-primary);
}

.side__list .item a .icon-arrow {
  margin-left: auto;
  background-color: var(--color-primary-light);
  transition: var(--transition-primary);
}

.side__list .item a .icon-arrow::after {
  background-image: url(../images/icon_arrow_r_wh.svg);
}

.side__list .item a.is-active {
  opacity: 1;
}

.side__list .item a:hover {
  color: var(--color-primary);
  opacity: 1;
}

.side__list .item a:hover .text,
.side__list .item a.is-active .text {
  opacity: 1;
}

.side__list .item a:hover .icon-arrow,
.side__list .item a.is-active .icon-arrow {
  background-color: var(--color-primary);
}



/* **************************************************************
 page
*************************************************************** */
/*heading*/
.page__heading {
  position: relative;
  width: 100%;
  height: 435px;
  overflow: clip;
}

.page__heading-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border-bottom: 2px dotted var(--color-primary);
}

.page__heading-img {
  max-width: 40%;
}

.page__heading-title {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page__heading-title .title-main {
  line-height: 1;
  font-size: clamp(4rem, 3.125vw, 6rem);
}

.page__heading-title .title-sub {
  line-height: 1;
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
}


/*breadcrumbs*/
.breadcrumbs-wrap {
  position: absolute;
  left: 50%;
  top: 50px;
  translate: -50%;
  z-index: 3;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0 3px;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs-list a {
  color: #fff;
  text-decoration: none;
}


/*section*/
.page__inner {
  position: relative;
  padding-top: 150px;
}

.page__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  border-top: 2px dotted var(--color-primary);
}

section:first-of-type .page__inner {
  padding-top: 0;
}

section:first-of-type .page__inner::before {
  display: none;
}


.page__inner:not(:first-of-type) {
  margin-top: 150px;
}

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


/*topics*/
.tag-category {
  display: inline-block;
  max-width: 100%;
  padding: 5px;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  line-height: 1;
  color: var(--color-primary);
  font-size: 90%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}



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


---  print 印刷用CSS


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media print {
  body {
    width: 1440px;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }

  .container {
    padding: 0 3%;
  }

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


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


--- 1670px / Note PC


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

  /* ------------------------------------
 common style
------------------------------------ */
  .container {
    width: 70%;
  }

  .container-max {
    width: 85.4%;
    margin-left: 7.3%;
    margin-right: 7.3%;
  }



  /* **************************************************************
   header
  *************************************************************** */
  .header__tel {
    display: none;
  }

  /* **************************************************************
   wrap
  *************************************************************** */
  /* ------------------------------------
 article
------------------------------------ */

  .article__wrap .container,
  .article__wrap .container-max {
    margin-left: 7.3%;
    margin-right: 7.3%;
  }

  /* ------------------------------------
   aside
  ------------------------------------ */
  .side__list .item a {
    font-size: 1.6rem;
  }

  .side__list .item a .text {
    opacity: 1;
  }

  .side__list .item a .icon-arrow {
    width: 30px;
    height: 30px;
  }

  .side__list .item a .icon-arrow::after {
    width: 5px;
  }

}

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


--- 1440px / Note PC


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

  /* **************************************************************
   header
  *************************************************************** */
  .header {
    height: 120px;
  }

  .header__container {
    column-gap: 0;
  }

  .header__logo {
    padding: 0 20px;
  }

  .header__name {
    font-size: 2rem;
  }

  .header__nav {
    padding-right: 115px;
  }


  /* ------------------------------------
   hamburger
  ------------------------------------ */
  .trigger-hamburger {
    top: 10px !important;
    right: 10px !important;
  }

}


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


---  1199px


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


  /* **************************************************************
   general
  *************************************************************** */
  /* **************************************************************
   common
  *************************************************************** */
  /*container*/
  .container,
  .container-max {
    width: 90%;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /*list*/
  .list-3col {
    gap: 25px;
  }

  /*column*/
  .column-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .column-container .column-content .container-btns {
    justify-content: center;
  }

  /*popup */
  .popup-wrap {
    min-height: 350px;
    max-height: 90vh;
    overflow-y: scroll;
  }

  .popup-img {
    margin-left: 25px;
  }

  /*slider*/
  .slider-fade {
    padding: 0 65px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 55px;
    height: 55px;
  }

  /*accordion*/
  .acc-content .list-2col {
    grid-template-columns: 1fr;
  }

  /* **************************************************************
   header
  *************************************************************** */
  .header__nav-inner {
    display: none;
  }

  /* ------------------------------------
   hamburger
  ------------------------------------ */
  .hamburger-head {
    top: 40px;
    left: 50px;
  }

  .hamburger-inner {
    min-width: inherit;
    max-width: 100%;
    padding: 120px 50px;
    border-radius: 0;
  }

  .hamburger-service .item .title {
    font-size: 2rem;
  }

  .hamburger-service .item {
    min-width: 435px;
    margin: 0 auto;
  }

  .hamburger-list .item {
    width: calc(50% - 30px);
  }

  .hamburger-list .item a {
    font-size: 1.8rem;
  }


  /* **************************************************************
   footer
  *************************************************************** */

  /* **************************************************************
   wrap
  *************************************************************** */

  /* ------------------------------------
  aside 
  ------------------------------------ */

  .side__wrap {
    position: fixed;
    right: 0;
    bottom: 0;
    top: inherit;
    width: 30%;
  }

  .trigger-aside {
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 170px;
    gap: 10px;
    padding: 8px;
    background-color: var(--color-primary);
    border-radius: 10px;
    color: #fff;
  }

  .trigger-aside .icon {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    transition: rotate var(--transition-primary);
  }

  .trigger-aside .icon .line {
    position: absolute;
    display: block;
    background-color: #fff;
  }

  .trigger-aside .icon .line:first-child {
    top: 50%;
    translate: 0 -50%;
    width: 100%;
    height: 2px;
  }

  .trigger-aside .icon .line:last-child {
    top: 0%;
    left: 50%;
    translate: -50% 0;
    width: 2px;
    height: 100%;
  }

  .trigger-aside.is-active .icon {
    rotate: 45deg;
  }

  .in-aside {
    position: fixed;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-primary);
  }

  .in-aside.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: inherit;
  }

  .side__list {
    padding-bottom: 60px;
    background-color: var(--color-primary-light);
  }

  .side__list .item a {
    opacity: 1;
  }

  .side__list .item a .icon-arrow {
    background-color: #fff;
  }

  .side__list .item a .icon-arrow::after {
    background-image: url(../images/icon_arrow_r_or.svg);
  }

  .side__list .item a:hover .icon-arrow::after,
  .side__list .item a.is-active .icon-arrow::after {
    background-image: url(../images/icon_arrow_r_wh.svg);
  }

}

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


--- 1023px(Laptop、iPad横以下)


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


--- 991px


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 991px) {
  section {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  /* **************************************************************
   common
  *************************************************************** */
  /*container*/
  .container,
  .container-max {
    max-width: 90%;
  }

  .container-summary {
    margin: 30px auto;
  }

  /*title*/
  .title-sec {
    margin-bottom: 60px;
    font-size: 3.4rem;
  }

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

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

  .title-border {
    padding-left: 30px;
    font-size: 2.6rem;
  }


  /*list*/
  .list-2col {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

  .list-4col,
  .list-5col {
    grid-template-columns: 1fr 1fr;
  }


  /*difi*/
  .difi-desc dl {
    grid-template-columns: 1fr;
  }

  /*bg*/
  [class*=bg-] {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .bg-wave-primary::before,
  .bg-wave-primary::after {
    background-size: 150%;
  }


  .bg-wave-secondary::before,
  .bg-wave-secondary::after {
    background-size: 150%;
  }


  /*column*/
  .column-container .column-img {
    width: 55%;
    max-width: 440px;
  }

  .column-item .column-img {
    max-width: 440px;
  }

  /*swiper*/
  .swiper-button-prev,
  .swiper-button-next {
    width: 45px;
    height: 50px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 2.2rem;
  }


  /*slide*/
  .slider-fade {
    padding: 0 60px;
  }

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




  /*tab*/
  .tabs-wrap {
    flex-direction: column;
    align-items: flex-start;
  }



  /*table*/
  .common-table-wrap {
    max-height: 70vh;
    overflow: auto;
  }

  /*popup*/
  .popup-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .popup-content {
    padding: 70px 25px 50px;
  }

  .popup-content-text {
    margin-top: -15px;
  }

  .popup-content .container-btns {
    margin: 30px auto 0;
  }

  .popup-img {
    width: 100%;
    padding-top: 50%;
    margin-left: 0;
  }


  /*panel*/
  .panel__title {
    padding: 20px;
  }

  .panel__content {
    padding: 20px;
  }

  .panel__content .max {
    font-size: 1.8rem;
  }


  /*difi*/
  .difi-table-team {
    padding: 20px;
  }

  .difi-table-desc {
    padding: 20px 30px;
  }


  /* **************************************************************
   header
  *************************************************************** */
  .header {
    height: 100px;
  }

  .trigger-hamburger {
    width: 80px;
    height: 80px;
  }

  .trigger-hamburger .inner {
    width: 41px;
    height: 27px;
  }

  .trigger-hamburger .text {
    font-size: 1.3rem;
  }

  /* **************************************************************
   footer
  *************************************************************** */
  .footer__contact {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    border-radius: 30px;
  }

  .footer__contact .inner {
    width: 90%;
  }

  .footer__tel {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-right: none;
    border-bottom: var(--border-primary);
  }

  .footer__sitemap {
    gap: 10px;
  }

  .footer__sitemap .sitemap-title {
    font-size: 1.6rem;
  }

  .footer__sitemap .sitemap-nav .child-item a {
    padding-left: 10px;
    font-size: 1.4rem;
  }

  .footer__sitemap .sitemap-nav .child-item a::before {
    top: 6px;
  }

  /* **************************************************************
   heading
  *************************************************************** */
  .page__heading {
    height: 350px;
  }

  .page__heading-title {
    gap: 20px;
  }

  .page__heading-title .title-sub {
    font-size: 2.2rem;
  }

  .page__inner {
    padding-top: 100px;
  }

  .page__inner:not(:first-of-type) {
    margin-top: 100px;
  }

}

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


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


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

  /* **************************************************************
   common
  *************************************************************** */
  body {
    font-size: 1.6rem;
  }

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

  .title-max .sub {
    font-size: 1.8rem;
  }

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

  /*list*/

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

  .difi-box {
    flex-direction: column;
    gap: 5px;
  }

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

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

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

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

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

  .difi-table-team {
    padding: 10px 15px;
  }

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


  /*column*/
  .column-container .column-img {
    width: 80%;
  }

  .column-container .column-content .container-btns {
    gap: 15px 25px;
    margin: 30px auto;
  }


  /*dialog*/
  .dialog-wrap {
    max-width: 90%;
  }

  /*panel*/
  .panel {
    flex-direction: column;
  }

  .panel__title::after {
    left: 50%;
    top: inherit;
    bottom: 0;
    translate: -50%;
    width: calc(100% - 40px);
    height: 2px;
    border-right: none;
    border-bottom: var(--border-primary);
  }


  /*table*/

  /*tab*/
  .tabs-nav {
    width: 100%;
  }

  .tab {
    width: 33.33%;
    min-width: fit-content;
  }


  /*accordion*/
  .trigger-acc {
    padding: 20px 60px 20px 20px;
  }

  .trigger-acc::after {
    right: 15px;
    width: 30px;
    height: 30px;
  }

  .acc-content {
    padding: 0 15px 15px;
  }


  /* **************************************************************
   header
  *************************************************************** */
  .hamburger-head {
    left: 30px;
    top: 30px;
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 100px;
  }

  .hamburger-tel .link {
    width: 40px;
    height: 40px;
    padding-left: 0;
    background-color: var(--color-primary-light);
    border-radius: 50%;
  }

  .hamburger-tel .link::before {
    left: 50%;
    top: 50%;
    translate: -50% -50%;
  }

  .hamburger-list {
    padding-right: 0;
  }

  .hamburger-list::after {
    bottom: -160px;
    width: 200px;
    height: 200px;
  }

  /* **************************************************************
   footer
  *************************************************************** */

  .footer__info {
    padding-top: 60px;
  }

  .footer__site::before {
    bottom: -80px;
  }

  .footer__site::after {
    right: -30px;
    bottom: -80px;
  }

  .footer__container {
    padding: 50px 0 70px;
  }

  .footer__sitemap {
    display: none;
  }

  .footer__copyright {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }


  /* **************************************************************
   page
  *************************************************************** */
  /*heading*/
  .page__heading {
    height: auto;
  }

  .page__heading-inner {
    align-items: flex-start;
    flex-direction: column;
    /* flex-wrap: wrap; */
    min-height: 200px;
    gap: 5px 20px;
    padding: 40px 0 20px;
  }

  .page__heading-img {
    height: 100px;
    margin-left: auto;
  }

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




}

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


--- 560px


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 560px) {
  :root {
    /*radiug*/
    --radius-max: 20px;
    --radius-mid: 15px;
  }


  /* **************************************************************
   general
  *************************************************************** */

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

  /* **************************************************************
   common
  *************************************************************** */

  /*container*/
  .container-inner {
    margin-top: 60px;
    margin-bottom: 60px;
  }

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

  .hidden-xss {
    display: none;
  }

  /*title*/
  .title-sec {
    margin-bottom: 40px;
    font-size: 3rem;
  }

  .title-mid {
    margin: 20px 0;
    font-size: 2.2rem;
  }

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

  .title-border {
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 2.2rem;
  }

  .title-border .right {
    font-size: 1.4rem;
  }

  /*btn*/
  [class^=btn-] {
    min-width: 240px;
  }

  .btn-max {
    min-height: 80px;
    gap: 10px;
    padding: 15px;
    font-size: 1.8rem;
  }

  /*link*/
  .link-arrow {
    gap: 5px 10px;
  }

  .link-file {
    gap: 5px;
  }

  /*icon*/
  .icon-arrow {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

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

  .icon-file::before {
    width: 40px;
    height: 40px;
  }

  /*list*/
  .list-2col {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .list-3col {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .list-4col,
  .list-5col {
    gap: 15px;

  }

  /*text*/
  .text-content {
    margin: 20px auto;
  }

  .text-asterisk {
    padding-left: 1.6rem;
    text-indent: -1.6rem;
  }


  /*bg*/
  [class*=bg-] {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /*column*/
  .column-container {
    gap: 25px 40px;
  }

  .column-container .column-img {
    width: 90%;
  }

  .column-item .column-img {
    margin-bottom: 20px;
  }

  .column-item .title-mid {
    margin: 15px auto;
  }

  /*panel*/
  .panel {
    margin: 10px 0;
  }

  .panel:first-of-type {
    margin-top: 25px;
  }

  .panel__title {
    font-size: 1.8rem;
  }


  /*swiper*/
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 40px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1.8rem;
  }

  .slider-fade {
    padding: 0 40px;
  }

  .slider-fade::before,
  .slider-fade:after {
    width: 40px;
  }

  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 2px !important;
  }


  /*accordion*/
  .trigger-acc {
    font-size: 1.8rem;
  }

  .acc-wrap {
    margin: 25px 0;
  }

  /*tab*/
  .tabs-wrap {
    margin: 25px 0 15px;
  }

  /*table*/
  .common-table-wrap {
    border: 2px solid #d8d8d8;
  }

  .common-table__header {
    padding: 10px;
    border-bottom: 2px solid #b09789;
  }

  .common-table__cell {
    min-width: fit-content;
    padding: 10px;
    white-space: nowrap;
  }

  .common-table__header .min,
  .common-table__cell .min {
    font-size: 1.3rem;
  }

  .table__inner-difi {
    padding: 10px;
    margin: 0 -10px;
  }

  .table__inner-difi:first-child {
    margin-top: -10px;
  }

  .table__inner-difi:last-child {
    margin-bottom: -10px;
  }

  /* **************************************************************
   header
  *************************************************************** */
  .header {
    height: auto;
  }

  .header__logo {
    gap: 5px;
    padding: 20px 12px;
  }

  .header__logo img {
    width: 50px;
  }

  .header__name {
    font-size: 1.7rem;
  }

  .header__name .min {
    font-size: 1.4rem;
  }

  .header__nav {
    padding-right: 0;
  }



  /* ------------------------------------
   hamburder
  ------------------------------------ */
  .trigger-hamburger {
    width: 60px;
    height: 60px;
  }

  .trigger-hamburger .inner {
    width: 36px;
    height: 22px;
  }

  .trigger-hamburger .text {
    margin-top: 5px;
    margin-bottom: -3px;
    font-size: 1.1rem;
  }

  .hamburger-head {
    left: 15px;
    top: 15px;
    padding-right: 80px;
  }

  .hamburger-logo {
    gap: 5px;
    font-size: 1.3rem;
  }

  .hamburger-logo .name .min {
    font-size: 1rem;
  }

  .hamburger-logo img {
    width: 40px;
  }

  .hamburger-tel .link {
    width: 35px;
    height: 35px;
  }

  .hamburger-tel .link::before {
    width: 25px;
    height: 23px;
  }

  .hamburger-sns .link {
    display: block;
    width: 35px;
    height: 35px;
  }

  .hamburger-inner {
    gap: 25px;
    padding: 80px 20px;
  }

  .hamburger-service {
    gap: 10px;
  }

  .hamburger-service .item {
    min-width: inherit;
    width: 100%;
  }

  .hamburger-service .item .img {
    width: 70px;
  }

  .hamburger-service .item .title {
    padding: 15px;
    font-size: 1.6rem;
  }

  .hamburger-service .item .icon-arrow {
    margin-right: 15px;
  }

  .hamburger-list {
    gap: 15px;
  }

  .hamburger-list::after {
    right: 0;
    width: 150px;
    height: 150px;
  }

  .hamburger-list .item {
    width: 100%;
  }


  /* **************************************************************
   footer
  *************************************************************** */
  .footer__contact {
    padding: 30px 0 20px;
  }

  .footer__contact .inner {
    min-height: 60px;
    gap: 10px;
  }

  .footer__tel {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .footer__tel .link {
    padding-left: 40px;
    font-size: 4rem;
  }

  .footer__tel .link::before {
    width: 30px;
    height: 35px;
  }

  .footer__mail {
    gap: 10px;
  }

  .footer__mail .icon {
    width: 40px;
  }

  .footer__mail .text {
    font-size: 2rem;
  }

  .footer__logo img {
    width: 50px;
  }

  .footer__name {
    font-size: 2rem;
  }

  .footer__name .min {
    font-size: 1.4rem;
  }

  .footer__site::before {
    width: 120px;
  }

  .footer__site::after {
    right: -15px;
    width: 60px;
  }

  .footer__address {
    font-size: 1.4rem;
  }

  .footer__copyright {
    margin-top: 15px;
  }

  /* **************************************************************
   wrap
  *************************************************************** */
  /* ------------------------------------
 aside
------------------------------------ */
  .trigger-aside {
    min-width: 150px;
  }


  /* **************************************************************
   page
  *************************************************************** */
  /*heading*/
  .page__heading-title .title-main {
    font-size: clamp(3rem, 8.47vw, 4rem);
  }

  .page__heading-title .title-sub {
    font-size: clamp(1.8rem, 5.17vw, 3rem);
  }

  .page__heading-img {
    max-width: 60%;
  }

  /*section*/
  .page__inner::after {
    bottom: -80px;
  }

  .inner-content {
    margin: 30px 0;
  }

}

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


--- 374px（スマホ中）


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