:root {
  /* basic */
  --color-primary-pk: #f2385a;
  --color-primary-pp: #bf36b6;
  --color-primary-bl: #3084f2;
  --color-primary-og: #f26d3d;
  --color-primary-ye: #ffdd49;
  --color-primary-gr: #4acf63;
  --color-base: #f2f2f2;
  /* texture */
  --tex-base: url(../images/tex_base.jpg);
  /* text */
  --text-primary: #111;
  --text-secondary: #767676;
  /*font*/
  --font-primary: "Zen Maru Gothic";
  /* 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: var(--color-base) url(../images/tex_base.jpg) repeat;
  line-height: 1.6;
  color: var(--text-primary);
  font-family: "Zen Maru Gothic", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, "Meiryo, Osaka", "sans-serif";
  font-weight: 500;
  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: 900;
  text-wrap: auto;
}

p {
  margin: 0;
}

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

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

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

strong {
  font-weight: 900;
}

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-max {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

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

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


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

/* button */
[class^=btn-] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 250px;
  gap: 10px;
  padding: 20px 30px;
  border-radius: 50rem;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  transition: all var(--transition-primary);
}

[class^=btn-]:hover {
  color: #fff;
  scale: 1.05;
}

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


/*link*/
.link-arrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px 10px;
  color: var(--color-primary);
  font-weight: 900;
  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);
}


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

.title-sec .main {
  position: relative;
  z-index: 1;
  line-height: 1.2;
  font-size: 5rem;
  text-align: center;
}

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

.title-mid {
  display: 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;
}

.text-balloon {
  position: relative;
  display: block;
  width: fit-content;
  padding: 0 30px;
  line-height: 1;
  font-size: 2.2rem;
  text-align: center;
}

.text-balloon::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 40px;
  height: 4px;
  background-color: #fff;
  transform: rotate(45deg);
  border-radius: 50rem;
}

.text-balloon::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10px;
  width: 40px;
  height: 4px;
  background-color: #fff;
  transform: rotate(-45deg);
  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-box {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 20px;
  border-bottom: 2px solid #ccc;
}

.difi-box:first-child {
  border-top: 2px solid #ccc;
}


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

.difi-desc {
  padding: 25px 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-desc .price {
  font-size: 2.2rem;
}

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

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

.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-pink {
  color: var(--color-primary-pk);
}

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

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

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

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

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


/*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: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  line-height: 1;
  color: #ccc;
  font-size: 4rem;
  font-weight: 900;
  -webkit-transition: rotate var(--transition-primary);
  transition: rotate var(--transition-primary);
}

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

.acc-content {
  display: none;
}

/*swiper*/
.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: 900;
  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;
}

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

.header__name {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  font-size: 3rem;
}


/* ------------------------------------
 contact
------------------------------------ */
.header__contact {
  position: fixed;
  right: 30px;
  top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__tel {
  padding: 8px 15px 10px;
  background: var(--color-base) url(../images/tex_base.jpg) repeat;
  border-radius: 15px;
}

.header__tel .tel {
  position: relative;
  padding-left: 45px;
  line-height: 1;
  font-size: 3.6rem;
  white-space: nowrap;
}

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

.header__tel .time {
  line-height: 1;
  padding-left: 15px;
  text-align: center;
}

.header__tel .time .min {
  font-size: 1.3rem;
}

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

.header__contact-btns .line {
  background-color: #28ce6e;
}

.header__contact-btns .contact {
  background-color: #3084f2;
}



/* **************************************************************
 footer
*************************************************************** */
.footer {
  overflow: clip;
  padding-bottom: 100px;
}

.footer__logo {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.footer__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 50px 0;
}

.footer__btns .btn-primary {
  min-width: 370px;
}

.footer__btns .line {
  background-color: #28ce6e;
  font-size: 2.6rem;
}

.footer__btns .contact {
  background-color: #3084f2;
  font-size: 2.6rem;
}

.footer__btns .tel {
  background-color: #fff;
  color: #111;
  font-size: 3.6rem;
}

.footer__icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 50px 0;
}

.footer__icons li a {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.copyright {
  display: block;
  line-height: 1;
  font-size: 1.4rem;
  text-align: center;
}




/* ------------------------------------
 heading
------------------------------------ */
.page__heading {
  padding-top: 120px;
  margin-bottom: -50px;
}

.page__heading-title {
  text-align: center;
  padding: 100px 25px;
  background-color: #fff;
}

.page__heading-title .title {
  font-size: 4rem;
  color: var(--color-primary-og);
}

/* ------------------------------------
 cta
------------------------------------ */
.parts-contact {
  position: relative;
  padding: 70px 0;
  background: var(--color-primary-pk) url(../images/tex_pink.jpg) repeat;
  border-radius: 150px;
  overflow: hidden;
}

.parts-contact .bg-ct {
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50%;
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.parts-contact .title-sec .main {
  display: block;
  width: fit-content;
  padding-bottom: 30px;
  background: url(../images/line_white.png) repeat-x bottom;
  color: #fff;
  font-size: 6rem;
  text-align: center;
}

.parts-contact .text-content {
  position: relative;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
}

.parts-contact .btn-primary {
  min-width: 370px;
  padding: 30px;
  background: url(../images/bg_btn_ct.jpg) no-repeat center / cover;
  color: #111;
  font-size: 2.6rem;
}


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


---  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__contact {
    right: 30px !important;
  }
}


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


--- 1670px / Note PC


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

  /* ------------------------------------
 cta
------------------------------------ */
  .parts-contact .bg-ct {
    width: 95%;
  }


}

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


--- 1440px / Note PC


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

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

  .header__name {
    gap: 15px;
    font-size: 2.2rem;
  }

  .header__contact {
    right: 15px;
  }

  .header__contact-btns {
    gap: 15px;
  }

  .header__tel .tel {
    padding-left: 35px;
    font-size: 3rem;
  }

  .header__tel .tel::before {
    width: 30px;
    height: 30px;
  }

  .header__contact-btns .btn-primary {
    min-width: inherit;
    font-size: 1.8rem;
  }

  /* ------------------------------------
   ct
  ------------------------------------ */
  .parts-contact .bg-ct img {
    width: 25%;
  }

}


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


---  1199px


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

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

  .header__name {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 10px;
  }

  .header__contact-btns {
    gap: 8px;
  }

  .header__contact-btns .btn-primary {
    padding: 20px;
    font-size: 1.6rem;
  }

  /* **************************************************************
   ct
  *************************************************************** */
  .parts-contact {
    border-radius: 80px;
  }

  .parts-contact .bg-ct {
    width: 105%;
  }

}

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


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



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

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

  /*swiper*/


  /* **************************************************************
   header
  *************************************************************** */
  .header__name {
    font-size: 1.8rem;
  }

  .header__contact {
    top: 15px;
    gap: 10px;
  }

  .header__contact-btns .btn-primary {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
  }

  .header__tel .tel {
    padding-left: 28px;
    font-size: 2.2rem;
  }

  .header__tel .tel::before {
    width: 22px;
    height: 22px;
  }

  .header__tel .time {
    padding-left: 0;
    font-size: 1.2rem;
  }

  .header__tel .time .min {
    font-size: 1rem;
  }


  /* ------------------------------------
 heading
------------------------------------ */
  .page__heading {
    padding-top: 100px;
    margin-bottom: 0;
  }


  /* ------------------------------------
   cta
  ------------------------------------ */
  .parts-contact {
    padding-bottom: 120px;
  }

  .parts-contact .title-sec {
    margin-bottom: 40px;
  }




}

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


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


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

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

  /*title*/
  .title-sec .main {
    font-size: 4rem;
  }

  /*list*/

  /*dl*/
  .difi-box {
    flex-direction: column;
    gap: 0;
  }

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

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


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


  .trigger-acc::after {
    right: 15px;
    font-size: 3rem;
  }

  /* **************************************************************
   header
  *************************************************************** */
  .header__container {
    justify-content: center;
  }

  .header__name {
    flex-direction: row;
    align-items: center;
  }

  .header__name img {
    width: auto;
    height: 25px;
  }

  .header__logo {
    max-width: 100%;
  }

  .header__contact {
    top: 65px;
    right: 0;
    justify-content: center;
    width: 100%;
    padding: 0 5px;
    gap: 8px;
    transition: top 0.2s;
  }

  .header__contact-btns .btn-primary {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.4rem;
  }

  .header__tel {
    display: flex;
    align-items: center;
    height: 53px;
    padding: 10px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
  }

  .header__tel .tel {
    padding-left: 23px;
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .header__tel .tel::before {
    width: 18px;
    height: 18px;
  }

  .header__tel .time {
    display: none;
  }

  .is-scroll .header__contact {
    top: 10px;
  }


  /* **************************************************************
   footer
  *************************************************************** */
  .footer {
    padding-bottom: 50px;
  }


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


  /* ------------------------------------
   cta
  ------------------------------------ */
  .parts-contact {
    padding: 50px 0;
  }

  .parts-contact .title-sec {
    margin-bottom: 30px;
  }

  .parts-contact .title-sec .main {
    font-size: clamp(3rem, 8.55vw, 5rem);
  }

  .parts-contact .text-content {
    font-size: 1.8rem;
  }

  .parts-contact .container-btns {
    margin-top: 130px;
  }

  .parts-contact .bg-ct {
    width: 95%;
    height: 260px;
  }

  .parts-contact .bg-ct img {
    width: auto;
    height: 100%;
  }




}

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


--- 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-max {
    font-size: 3.4rem;
  }

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

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

  .text-balloon::before,
  .text-balloon::after {
    top: 50%;
  }

  /*btn*/
  [class^=btn-] {
    font-size: 2rem;
  }

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

  .trigger-acc::after {
    right: 10px;
    font-size: 2.4rem;
  }

  /* **************************************************************
 header
*************************************************************** */



  /* **************************************************************
   footer
  *************************************************************** */
  .footer__btns {
    gap: 15px;
    margin: 30px 0;
  }

  .footer__btns .btn-primary {
    min-width: 300px;
    font-size: 2.2rem;
  }

  .footer__btns .tel {
    font-size: 3rem;
  }

  .footer__icons {
    margin: 30px 0;
  }

  /* ------------------------------------
   heading
  ------------------------------------ */
  .page__heading-title {
    padding: 60px 20px;
  }

  .page__heading-title .title {
    font-size: 3rem;
  }

  /* ------------------------------------
   cta
  ------------------------------------ */
  .parts-contact {
    padding-bottom: 35px;
    border-radius: 60px;
  }

  .parts-contact .text-content {
    font-size: 1.6rem;
  }

  .parts-contact .btn-primary {
    min-width: 300px;
  }

  .parts-contact .bg-ct {
    width: 105%;
    justify-content: center;
    gap: 10px;
  }

}

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


--- 374px（スマホ中）


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