@charset "UTF-8";

:root {
  /* basic */
  --color-primary: #354585;
  --color-primary-light: #ebf2ff;
  /* --color-primary-dark: #b09789; */
  --color-secondary: #c4474a;
  --color-secondary-light: #ffe6e6;
  /* title */
  --title-primary: #354585;
  /* texture */
  --tex-primary: url(../images/tex_primary.jpg);
  --tex-primary-light: url(../images/tex_primary-light.jpg);
  /* button */
  --button-primary-bg: var(--color-primary) url(../images/bg_btn_bl.jpg) no-repeat center / 100%;
  --button-secondary-bg: var(--color-secondary) url(../images/bg_btn_rd.jpg) no-repeat center / 100%;
  /* text */
  --text-primary: #111;
  --text-secondary: #767676;
  /*font*/
  --font-primary: "Noto Sans JP";
  --font-secondary: "Oswald";
  /* 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: 'Noto Sans JP', "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, "Meiryo, Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "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;
}

a {
  color: inherit;
  transition: all var(--transition-primary);
}

a:hover,
a:active,
a:focus {
  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-primary);
  -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);
  color: var(--text-primary);
}

textarea:focus,
textarea:target {
  border-color: var(--color-primary);
  -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-primary);
  -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 {}

.container-max {
  max-width: 1500px;
}


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

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

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

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

/* button */
[class^=btn-] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  min-width: 250px;
  gap: 5px 15px;
  padding: 20px 60px 20px 30px;
  border-radius: 50rem;
  line-height: 1.2;
  font-weight: 400;
  transition: all var(--transition-primary);
}

[class^=btn-]::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  width: 21px;
  height: 15px;
  background: url(../images/icon_arrow_r_wh.svg) no-repeat center / contain;
  transition: all var(--transition-primary);
}

[class^=btn-]:hover,
[class^=btn-]:active,
[class^=btn-]:focus {
  opacity: 1;
  filter: brightness(130%);
  cursor: pointer;
  color: #fff;
}

[class^=btn-]:hover::after {
  scale: 1.3;
}

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

.btn-primary-light {
  background: var(--tex-primary-light);
  color: var(--color-primary);
}

.btn-primary-light::after {
  background-image: url(../images/icon_arrow_r_bl.svg);
}

.btn-primary-light:hover,
.btn-primary-light:active,
.btn-primary-light:focus {
  color: var(--color-primary);
}

.btn-secondary {
  background: var(--button-secondary-bg);
  color: #fff;
}

.btn-max {
  min-width: 350px;
  min-height: 90px;
  background-image: url(../images/bg_btn_max.jpg);
}

.btn-min {
  min-height: 60px;
  padding: 5px 60px 5px 30px;
}

.btn-target::after {
  width: 15px;
  height: 15px;
  background-image: url(../images/icon_blank.png);
}

.btn-primary-light.btn-target::after {
  background-image: url(../images/icon_blank_bl.png);
}

.btn-contact {
  justify-content: center;
  width: 100%;
  height: 115px;
  background: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}

.btn-contact::after {
  width: 28px;
  height: 20px;
}


/*link*/
.link-arrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px 10px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.4rem;
}

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

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

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

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

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

/*margin設定*/
.margin-bottom20 {
  margin-bottom: 20px;
}

/* title */
.title-sec {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 80px;
}

.title-sec .main {
  position: relative;
  z-index: 1;
  line-height: 1.3;
  font-size: 3rem;
  color: var(--color-primary);
}

[data-current="front"] .title-sec .main {
  font-size: 2.2rem;
}

.title-sec.text-left {
  align-items: flex-start;
}

.title-max {
  display: inline-block;
  margin-bottom: 30px;
  line-height: 1.5;
  color: var(--color-primary);
  font-size: 4rem;
}

.title-mid {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--color-primary);
  font-size: 3rem;
}

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

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

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

.title-icon .icon {

  flex-shrink: 0;
}

.title-border {
  position: relative;
  margin: 40px 0;
  padding-left: 40px;
  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;
}


/*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: 30px;
  line-height: 1.2;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 15px;
  background: url(../images/icon_check.png) no-repeat center / contain;
}

.list-number {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: decimal;
  padding-left: 3rem;
}

.list-number li {
  list-style: inherit;
}

.list-disc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: disc;
  padding-left: 3rem;
}

.list-disc li {
  list-style: inherit;
  line-height: 1.2;
}


/*dl*/

.difi {
  margin: 50px 0;
}

.difi-box {
  display: flex;
  gap: 20px;
  border-top: 1px solid #bec7d7;
}

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

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

.difi-desc {
  width: 100%;
  padding: 30px 0;
  margin: 0;
  line-height: 1.5;
}

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

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

.difi-detail .difi-team,
.difi-detail .difi-desc {
  padding-top: 18px;
  padding-bottom: 18px;
}

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



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

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

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

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

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

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

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

.text-80 {
  display: block;
  font-size: clamp(1.4rem, 80%, 1.8rem);
}

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


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

.bg-blue [class*=title-],
.bg-blue .title-sec .main {
  color: #fff;
}

.bg-blue-light {
  background-color: var(--color-primary-light);
  background-image: var(--tex-primary-light);
}


/*column*/
.column-container {
  display: flex;
  justify-content: space-between;
  gap: 50px 80px;
}

.column-container .column-img {
  flex-shrink: 0;
  text-align: center;
}

.column-box {
  display: flex;
  align-items: center;
  padding: 50px;
  margin: 50px 0;
  gap: 50px;
  background-color: #d5e6ff;
}

.column-box:last-of-type {
  margin-bottom: 0;
}

.column-box .title {
  width: 35%;
  flex-shrink: 0;
}

.column-box .title-sec {
  margin-bottom: 0;
}

.column-box .title-sec .main {
  font-size: 3rem;
}

.column-box .img {
  flex-shrink: 0;
  text-align: center;
}

/*accordion*/
.trigger-acc {
  position: relative;
  z-index: 0;
  display: flex;
  padding-right: 25px;
}

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

.trigger-acc::after {
  content: "+";
  font-family: var(--font-icon);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  line-height: 1;
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 900;
  -webkit-transition: rotate var(--transition-primary);
  transition: rotate var(--transition-primary);
}

.trigger-acc.is-active::after {
  rotate: 45deg;
}

.in-acc-content {
  display: none;
}

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

.swiper-button-prev,
.swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: var(--color-primary-dark);
  font-family: var(--font-icon);
}

.swiper-button-prev {
  left: 0;
  border-radius: 0 50rem 50rem 0;
}

.swiper-button-prev::after {
  content: "\f060";
  font-weight: 900;
  font-size: 2.6rem;
}

.swiper-button-next {
  right: 0;
  border-radius: 50rem 0 0 50rem;
}

.swiper-button-next::after {
  content: "\f061";
  font-weight: 900;
  font-size: 2.6rem;
}

.swiper-pagination {
  bottom: -35px !important;
  text-align: center;
}

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

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

.slider-fade {
  position: relative;
  padding: 0 75px;
}

.slider-fade::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10%;
  z-index: 2;
  width: 75px;
  height: 120%;
  background: linear-gradient(to right, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.slider-fade::after {
  content: "";
  position: absolute;
  right: 0;
  top: -10%;
  z-index: 1;
  width: 75px;
  height: 120%;
  background: linear-gradient(to left, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

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

  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-primary-light2);
  border-radius: 50%;
  line-height: 1;
  color: var(--link-primary);
  font-family: var(--font-icon);
  font-weight: 700;
  font-size: 2rem;

  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-primary);
  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-primary);
  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;
  z-index: 9999;
}

.dialog-wrap {
  position: fixed;
  display: flex;
  inset: 0;
  max-width: 1170px;
  width: 90%;
  max-height: 95%;
  margin: auto;
  padding: 0;
  background-color: #fff;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-primary) allow-discrete;

}

.dialog-wrap[open] {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;

  @starting-style {
    opacity: 0;
  }
}

.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);
}

.dialog-wrap::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.icon-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 60px;
  height: 60px;
  background: url(../images/icon_close.png) no-repeat center / contain;
}

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




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

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

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

.panel__content {
  padding: 30px;
}



/*banner*/
.banner-ashirias {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 100px auto;
  background: var(--color-primary) url(../images/bg_banner_ashirias.jpg) repeat-y center / 100%;
}

.banner-ashirias:hover {
  scale: 1.05;
}

.banner-ashirias:first-child {
  margin-top: 0;
}

.banner-ashirias .content {
  width: 67%;
  padding: 70px 80px;
  color: #fff;
}

.banner-ashirias .img {
  position: relative;
  flex-shrink: 0;
  margin-bottom: 70px;
  text-align: center;
}

.banner-ashirias .img img {
  margin-top: -15px;
}

.banner-ashirias .title-mid {
  margin-top: 0;
  color: #fff;
}

.banner-ashirias .text-content {
  margin-top: 40px;
}

.banner-ashirias .btn-primary-light {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  margin-left: auto;
  background: #fff;
}

/* **************************************************************
 header
*************************************************************** */
.header {
  position: absolute;
  z-index: 1000;
  width: 100%;
  padding: 30px;
  border-bottom: 2px solid rgba(190, 199, 215, 0.5);
}

[data-current=front] .header {
  border-color: transparent;
}

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



.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
  padding-right: 460px;
}

.header__nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  column-gap: 60px;
}

.header__nav-inner .item a {
  position: relative;
  padding: 8px 0;
  line-height: 1.2;
  color: #fff;
  border-bottom: 1px solid transparent;
}

.header__nav-inner .item a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: calc(100% + 16px);
  height: calc(100% - 8px);
  background-color: #fff;
  opacity: 0;
  transition: var(--transition-primary);
}

.header__nav-inner .item a.is-active::before,
.header__nav-inner .item a:hover::before {
  opacity: 1;
}

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

/* ------------------------------------
 contact
------------------------------------ */
.header__contact {
  position: absolute;
  right: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px 5px;
  transition: all var(--transition-primary);
}

.header__tel {
  position: relative;
  display: block;
  padding-left: 65px;
  line-height: 1;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 3.8rem;
  font-weight: 400;
  white-space: nowrap;
}

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

.header__tel:hover {
  color: #fff;
}

.header__contact-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__contact-btns .btn {
  display: flex;
  align-items: center;
  gap: 0 8px;
  padding: 10px 15px;
  background: var(--button-primary-bg);
  line-height: 1;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50rem;
}


.header__contact-btns .btn .icon {
  margin-top: 2px;
}

.header__sns {
  display: flex;
  align-items: center;
  gap: 3px;
}




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

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


.trigger-hamburger {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 85px;
  background: var(--color-primary) url(../images/bg_btn_hamburger.jpg) no-repeat center / contain;
  border-radius: 50%;
  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: 40px;
  height: 26px;
}


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

.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;
}


/* ------------------------------------
 overlay
------------------------------------ */
.hamburger-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  backdrop-filter: blur(2px);
}

.hamburger-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--tex-primary);
  opacity: 0.9;
}

.in-hamburger {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;

  /*starting-style*/
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-primary) allow-discrete;
}

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

  /* トランジション前 */
  @starting-style {
    opacity: 0;
  }
}

.hamburger-inner {
  position: relative;
  width: 95%;
  height: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 120px 15px;
  transition: translate var(--transition-primary);
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

.is-open .hamburger-inner {
  translate: 0;
}


/*service menu*/
.hamburger-service {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

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

.hamburger-service .item-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 105px;
  margin-bottom: 30px;
  color: #fff;
}

.hamburger-service .item-title:hover {
  opacity: 1;
}

.hamburger-service .item-title .sub {
  position: absolute;
  left: 0;
  top: 0;
}

.hamburger-service .item-title .main {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: auto;
  padding: 8px 0;
  border-bottom: 1px solid #fff;
  line-height: 1;
  font-size: 1.8rem;
  transition: all var(--transition-primary);
}

.hamburger-service .item-title .main::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -10px;
  top: 1px;
  width: calc(100% + 20px);
  height: 100%;
  background-color: #fff;
  transition: all var(--transition-primary);
  opacity: 0;
}

.hamburger-service .item-title.is-active .main,
.hamburger-service .item-title:hover .main,
.hamburger-service .item-title.is-active .main::before,
.hamburger-service .item-title:hover .main::before {
  opacity: 1;
  color: var(--color-primary);
}



.hamburger-service .item-nav {
  display: flex;
  flex-direction: column;
}

.hamburger-service .item-nav .child-item {
  line-height: 1.2;
}

.hamburger-service .item-nav .child-item a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-size: 1.6rem;
}

/*btns*/
.hamburger-btns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin: 80px 0 50px;
}

.hamburger-btns .icon {
  flex-shrink: 0;
}

.hamburger-btns .btn-max {
  white-space: nowrap;
}

/*other*/
.hamburger-other {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 25px 50px;
}

.hamburger-other .item a {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
  line-height: 1;
  color: #fff;
}

.hamburger-other .item a:hover {
  border-color: transparent;
}

.hamburger-other .frontpage {
  margin-left: auto;
}

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


/* ------------------------------------
 contact
------------------------------------ */
.footer__contact {
  padding: 95px 0 130px;
  background: var(--tex-primary);
  color: #fff;
}

.footer__contact .title-sec .main {
  color: #fff;
}

.footer__contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 25px;
}

.footer__contact-inner .box {
  padding: 35px 20px 25px;
  background-color: rgb(15, 19, 48, 0.5);
  border-radius: 50rem;
  color: #fff;
  transition: var(--transition-primary);
}

.footer__contact-inner .box:hover {
  background-color: rgb(15, 19, 48, 1);
}

.footer__tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer__tel .text {
  position: relative;
  padding-left: 60px;
  line-height: 1;
  font-family: var(--font-secondary);
  font-size: 3.4rem;
}

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

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

.footer__tel .hours .tag {
  font-size: 1.4rem;
}

.footer__mail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer__mail .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}

.footer__mail .hours {
  font-size: 1.6rem;
}

.footer__sns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer__sns-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__sns-list .text {
  font-size: 1.6rem;
}


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

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

.footer__sitemap .inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  font-size: 1.6rem;
}

.footer__sitemap .sitemap-title {
  display: inline-block;
  padding-bottom: 5px;
  line-height: 1.2;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.footer__sitemap .sitemap-nav {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}

.footer__sitemap .sitemap-nav .child-item a {
  position: relative;
  display: block;
  line-height: 1.2;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.4rem;
}

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


.footer__site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
  border-top: 1px solid #bec7d7;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer__site .detail {
  font-size: 1.6rem;
}

.footer__site .copyright {
  display: block;
  margin-top: 15px;
  line-height: 1;
  font-size: 1.4rem;
}


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

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

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

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

.side__list .item a {
  padding: 15px 0;
  line-height: 1.2;
  color: var(--text-primary);
  opacity: 0.5;
}

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

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

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

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

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


/* **************************************************************
 page
*************************************************************** */
/*heading*/
.page__heading {
  position: relative;
  width: 100%;
  padding-top: 150px;
  overflow: clip;
  background-color: var(--color-primary);
  color: #fff;
}


.page__heading-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

.page__heading-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4) url(../images/bg_dot.png);
}

.page__heading-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  height: 450px;
}

.page__heading-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.page__heading-title .sub {
  margin-top: -15px;
}

.page__heading-title .main {
  line-height: 1;
  font-size: 3rem;
}

/*nav*/
.page__heading-nav {
  display: flex;
  flex-direction: column;
  gap: 5px 15px;
}

.page__heading-nav .item a {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  padding: 8px;
}

.page__heading-nav .item a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50%;
  width: calc(100% - 16px);
  height: 1px;
  background-color: #fff;
}

.page__heading-nav .item a:hover {
  opacity: 1;
  background-color: #fff;
  color: var(--color-primary);
}


/*section*/
.page__inner {
  position: relative;
}

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

section:last-child .page__inner::after {
  display: none;
}

.content__inner {
  margin: 50px 0;
}

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

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



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


---  print 印刷用CSS


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

  .container {
    padding: 0 3%;
  }

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

  .header__hamburger {
    display: none !important;
  }

  .header__contact {
    right: 30px !important;
  }
}


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


--- 1670px / Note PC


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

  /* **************************************************************
   header
  *************************************************************** */
  .header__logo {
    padding: 0;
  }

  .header__tel {
    font-size: 3.2rem;
  }

  .header__nav {
    padding-right: 420px;
  }

  .header__nav-inner {
    column-gap: 30px;
  }

  .header__nav-inner .item a {
    font-size: 1.6rem;
  }

}

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


--- 1440px / Note PC


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

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


}


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


---  1199px


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 1199px) {
  .wrap {
    padding: 0 25px;
  }

  /*btn*/
  .btn-contact {
    font-size: 1.8rem;
  }

  .btn-contact .icon {
    width: 90px;
    text-align: center;
  }



  /*banner*/
  .banner-ashirias .content {
    padding: 50px;
  }

  .banner-ashirias .title-mid {
    font-size: 2.2rem;
  }

  .banner-ashirias .text-content {
    font-size: 1.6rem
  }

  .banner-ashirias .img {
    margin-bottom: 25px;
    margin-right: 25px;
  }


  /* **************************************************************
   header
  *************************************************************** */
  .header__nav {
    padding-right: 0;
  }

  .header__contact {
    right: 130px;
  }

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

  .trigger-hamburger {
    right: 20px;
    top: 20px;
  }

  .hamburger-btns {
    justify-content: center;
  }

  .hamburger-btns .btn-max {
    min-width: 285px;
    padding: 20px;
  }

  .hamburger-btns .btn-max::after {
    display: none;
  }

  /* **************************************************************
   footer
  *************************************************************** */
  .footer__mail .inner {
    font-size: 1.8rem;
  }

  .footer__tel .text {
    font-size: 3rem;
  }

}

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


--- 991px


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

  /* **************************************************************
   common
  *************************************************************** */
  /*container*/

  /*btn*/

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

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

  .list-4col,
  .list-5col {
    gap: 1fr 1fr 1fr;
  }

  /*dl*/
  .difi-team {
    min-width: 180px;
  }


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


  /*column*/
  .column-box {
    flex-direction: column;
    gap: 25px;
  }

  .column-box .title {
    width: 100%;
  }

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

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


  /*banner*/
  .banner-ashirias {
    flex-direction: column;
    align-items: center;
  }

  .banner-ashirias .content {
    width: 100%;
    padding: 50px 50px 25px;
    text-align: center;
  }

  .banner-ashirias .text-content {
    margin-top: 25px;
    text-align: center;
  }

  .banner-ashirias .img {
    margin-right: 0;
  }

  .banner-ashirias .btn-primary-light {
    right: inherit;
    left: 50%;
    translate: -50%;
  }


  /* **************************************************************
   header
  *************************************************************** */
  .header__logo {
    max-width: 50%;
  }

  .header__tel {
    display: none;
  }

  .header__contact-btns {
    flex-direction: column;
  }

  /* **************************************************************
   hamburger
  *************************************************************** */
  .in-hamburger {
    align-items: flex-start;
  }

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

  .hamburger-service .item {
    width: 40%;
  }

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

  .footer__contact-inner {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin: 0 auto;
  }



  /*sitemap*/
  .footer__sitemap {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px 50px;
  }

  .footer__sitemap .inner {
    min-width: fit-content;
  }

  .footer__sitemap .inner:last-child {
    flex-direction: row;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 50px;
    margin-top: 25px;
  }

  /*site*/
  .footer__site {
    flex-direction: column;
    gap: 30px;
  }


}

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


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


///////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }

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

  /*title*/

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


  /*column*/
  .column-container .column-img {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .column-box {
    padding: 35px;
  }


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

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

  .panel__title {
    padding: 30px 20px;
  }

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

  .panel__content {
    padding: 20px;
  }


  /*banner*/
  .banner-ashirias .content {
    padding: 40px 30px 25px;
  }


  /* **************************************************************
   header
  *************************************************************** */
  .header {
    padding: 20px;
  }

  .header__logo {
    max-width: 50%;
  }

  .header__contact {
    right: 105px;
  }

  .header__sns .icon {
    width: 25px;
    height: 25px;
  }


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

  .trigger-hamburger .inner {
    width: 35px;
    height: 20px;
  }

  .hamburger-btns {
    margin: 50px 0;
  }

  .hamburger-btns .icon {
    width: 45px;
    text-align: center;
  }

  .hamburger-other {
    gap: 15px 25px;
  }

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

  .footer__sitemap {
    display: none;
  }


  /* **************************************************************
   page
  *************************************************************** */
  /*heading*/
  .page__heading {
    padding-top: 105px;
  }

  .page__heading-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .page__heading-title {
    /* height: 350px; */
  }

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

  .page__heading-title .sub {
    max-width: 80%;
  }

  .page__heading-nav {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 5px 10px;
  }



}

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


--- 560px


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


  /* **************************************************************
   general
  *************************************************************** */
  body {
    font-size: 1.4rem;
  }

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

  .wrap {
    padding: 0 20px;
  }

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


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

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

  /*title*/
  .title-sec {
    gap: 15px;
    margin-bottom: 40px;
  }

  .title-sec .sub {
    scale: 0.85;
  }

  .title-sec.text-left .sub {
    transform-origin: left;
  }

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

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

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

  /*btn*/
  .btn-contact {
    justify-content: flex-start;
    padding-left: 15px;
  }

  .btn-primary-light::after {
    width: 21px;
    height: 15px;
  }

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

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

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

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

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

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

  }

  /*text*/


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

  .column-container .column-img {
    max-width: 100%;
  }

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

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

  .column-box {
    padding: 25px;
  }

  .column-box .title-sec .main {
    font-size: 2.2rem;
  }

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

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

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

  /*dialog*/
  .dialog-wrap {
    width: 95%;
    max-height: 98%;
  }

  .icon-close {
    width: 40px;
    height: 40px;
  }


  /*banner*/
  .banner-ashirias {
    margin: 50px 0;
  }

  .banner-ashirias .content {
    padding: 50px 25px 20px;
  }

  .banner-ashirias .text-content {
    text-align: justify;
    font-size: 1.4rem;
  }

  .banner-ashirias .img {
    max-width: 65%;
  }


  /* **************************************************************
 header
*************************************************************** */
  .header {
    padding: 15px;
  }

  .header__logo {
    max-width: 60%;
  }

  .header__logo img {
    max-height: 100%;
  }

  .header__contact {
    right: 80px;
  }

  .header__contact-btns {
    display: none;
  }

  /* **************************************************************
 hamburger
*************************************************************** */
  .trigger-hamburger {
    right: 10px;
    top: 10px;
    width: 55px;
    height: 55px;
  }

  .trigger-hamburger .inner {
    width: 30px;
    height: 20px;
  }

  .hamburger-inner {
    padding: 60px 15px;
  }

  .hamburger-service {
    gap: 30px;
  }

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

  .hamburger-service .item-title {
    flex-direction: column;
    align-items: flex-start;
    min-height: inherit;
    margin-bottom: 20px;
  }

  .hamburger-service .item-title .main {
    margin-top: -5px;
    padding: 5px 0;
  }

  .hamburger-service .item-title .main::before {
    left: -5px;
    width: calc(100% + 10px);
  }

  .hamburger-service .item-title .sub {
    position: relative;
    scale: 0.85;
    transform-origin: left;
  }

  .hamburger-service .item-nav .child-item a {
    padding: 5px 0;
  }

  .hamburger-btns {
    margin: 35px 0;
  }

  .hamburger-btns .btn-max {
    width: 100%;
    min-width: inherit;
    min-height: 75px;
    padding: 15px 60px 15px 30px;
  }

  .hamburger-btns .btn-max::after {
    display: block;
  }

  .hamburger-other .frontpage {
    margin-left: 0;
  }

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

  .footer__contact-inner {
    max-width: 90%;
    gap: 15px;
  }

  .footer__contact-inner .box {
    gap: 5px;
    padding: 25px 15px 20px;
  }

  .footer__site .detail {
    font-size: 1.4rem;
  }

  /* **************************************************************
   page
  *************************************************************** */
  /*heading*/
  .page__heading {
    padding-top: 75px;
  }



}

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


--- 374px（スマホ中）


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