@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 10px;
}

img {
  width: 100%;
}

:root {
  --font-h1:clamp(calc(8.2rem/3), calc(82/1440*100vw), 8.2rem);
  /* 6vw */
  --font-h2:clamp(calc(5.8rem/3), calc(58/1440*100vw), 5.8rem);
  /* 4.05vw */
  --font-h3:clamp(calc(3.5rem/3), calc(35/1440*100vw), 3.5rem);
  /* 2.4vw */
  --font-h4:clamp(calc(2.8rem/3), calc(28/1440*100vw), 2.8rem);
  /* 1.8vw */
  --font-h5:clamp(calc(2.4rem/3), calc(24/1440*100vw), 2.4rem);
  /* 1.6vw */
  --font-p-base:clamp(calc(1.6rem/3), calc(16/1440*100vw), 1.6rem);
  /* 1.4vw */
  --font-p-mv-mess:clamp(calc(2rem/3), calc(20/1440*100vw), 2rem);
  /* 1.4vw */
  --font-a-base:clamp(calc(2.8px/3), calc(28/1440*100vw), 2.8rem);
  /* 2vw */
  --font-a-nav:clamp(calc(1.4rem/3), calc(14/1440*100vw), 1.4rem);
  /* 1vw */
  --font-slick-arrow:clamp(calc(5.8rem/3), calc(58/1440*100vw), 5.8rem);
  /* 4vw */
  --color-1:#fff;
  --color-2:#020BA6;
  --color-3:#F2F2F2;
  --color-4:#333;
  --color-5:blue;
  --color-6:transparent;
}

h2 {
  font-size: var(--font-h2);
}

h3 {
  font-size: var(--font-h3);
}

h4 {
  font-size: var(--font-h4);
}

p {
  font-size: var(--font-p-base);
}

.scroll__fadein {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.scroll__fadein.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 

main

*/
.main {
  max-width: 100%;
}

.section-title__wrap {
  margin-bottom: 4vw;
}

.section-title__wrap h2 {
  letter-spacing: 0.4rem;
  line-height: 1;
}

.section-title__wrap h2 .kirakira-text {
  position: relative;
  display: inline-block;
  color: #000;
  overflow: hidden;
}

.section-title__wrap h2 .kirakira-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(242, 242, 242, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: kirakira-text-anim 2s infinite;
          animation: kirakira-text-anim 2s infinite;
}

@-webkit-keyframes kirakira-text-anim {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes kirakira-text-anim {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@media screen and (min-width: 1441px) {
  :root {
    --font-h1:86.4px;
    --font-h2:58.14px;
    --font-h3:34.56px;
    --font-h4:25.92px;
    --font-h5:23.04px;
    --font-p-base: 16px;
    --font-p-mv-mess: 20px;
    --font-a-base:28.8px;
    --font-a-nav:14.4px;
    --font-slick-arrow:57.6px;
  }
}

@media (max-width: 450px) {
  * {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
  }
  .section-title__wrap {
    margin-bottom: 2%;
    width: 100% !important;
    padding: 0 8vw;
  }
  .section-title__wrap h4 {
    margin-bottom: 0vw;
  }
  .section-title__wrap h2 {
    letter-spacing: 0.4rem;
  }
  :root {
    --font-h1:clamp(calc(86.4px/3), calc(86.4/375*100vw), 86.4px);
    /* 6vw */
    --font-h2: calc(44/375*100vw);
    /* 11.73vw */
    --font-h3:clamp(calc(34.56px/3), calc(34.56/375*100vw), 34.56px);
    /* 2.37vw */
    --font-h4:clamp(calc(25.92px/3), calc(25.92/375*100vw), 25.92px);
    /* 1.8vw */
    --font-h5:clamp(calc(23.04px/3), calc(23.04/375*100vw), 23.04px);
    /* 1.6vw */
    --font-p-base:clamp(calc(20.16px/3), calc(20.16/375*100vw), 20.16px);
    /* 1.4vw */
    --font-a-base:clamp(calc(28.8px/3), calc(28.8/375*100vw), 28.8px);
    /* 2vw */
    --font-a-nav:clamp(calc(14.4px/3), calc(14.4/375*100vw), 14.4px);
    /* 1vw */
    --font-slick-arrow:clamp(calc(57.6px/3), calc(57.6/375*100vw), 57.6px);
    /* 4vw */
  }
  h2 {
    font-size: var(--font-h2);
  }
  h3 {
    font-size: var(--color-3);
  }
  h4 {
    font-size: var(--color-4);
  }
  p {
    font-size: var(--font-p-base);
  }
  .scroll__fadein {
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
  }
  .is-visible {
    opacity: 1;
  }
  .main {
    max-width: 100%;
  }
}

/* 

header

*/
.header {
  width: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: var(--color-2);
}

.header .header__wrap {
  width: clamp(calc(1200px/3), calc(1200/1440*100vw), 1200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1% 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .4s;
  transition: .4s;
  max-width: 1440px;
  margin: 0 auto;
}

.header .header__wrap .title__wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header .header__wrap .title__wrap a {
  font-size: var(--font-a-base);
  color: var(--color-1);
  -webkit-transition: .4s;
  transition: .4s;
  display: inline-block;
}

.header .header__wrap .title__wrap:hover a {
  color: var(--color-2);
  -webkit-transition: .4s;
  transition: .4s;
}

.header .header__wrap:has(.title__wrap:hover) {
  background-color: var(--color-1);
  -webkit-transition: .4s;
  transition: .4s;
}

.header .header__wrap:has(.title__wrap:hover) .nav__item a {
  color: var(--color-2);
}

.header .header__wrap ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.header .header__wrap ul .nav__item {
  position: relative;
  display: inline;
  margin: 0 clamp(calc(20px/3), calc(20/1440*100vw), 20px);
}

.header .header__wrap ul .nav__item::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--color-1);
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .header__wrap ul .nav__item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header .header__wrap ul .nav__item a {
  color: var(--color-1);
  font-size: var(--font-a-nav);
}

.hamburger__menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.hamburger__menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-1);
}

.hamburger__nav {
  display: none;
}

@media (max-width: 450px) {
  /* 
    
    header
    
    */
  .header {
    width: 100%;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .header .header__wrap {
    width: 100%;
    background-color: var(--color-2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3% 3vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .4s;
    transition: .4s;
  }
  .header .header__wrap:has(.title__wrap:hover) {
    background-color: var(--color-1);
    -webkit-transition: .4s;
    transition: .4s;
  }
  .header .header__wrap .title__wrap {
    width: 50%;
  }
  .header .header__wrap .title__wrap a {
    font-size: 3vw;
    color: var(--color-1);
    -webkit-transition: .4s;
    transition: .4s;
    display: inline-block;
  }
  .header .header__wrap .title__wrap:hover a {
    color: var(--color-2);
    -webkit-transition: .4s;
    transition: .4s;
  }
  .header .header__wrap .nav {
    width: 50%;
  }
  .header .header__wrap .nav ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .header .header__wrap .nav ul .nav__item {
    position: relative;
  }
  .header .header__wrap .nav ul .nav__item::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--color-1);
    bottom: -1px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header .header__wrap .nav ul .nav__item:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .header .header__wrap .nav ul .nav__item a {
    color: var(--color-1);
    font-size: var(--font-a-nav);
  }
  .header .header__wrap:has(.title__wrap:hover) .nav__item a {
    color: var(--color-2);
  }
  .header .header__wrap .nav {
    display: none;
  }
  #nav__menu.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hamburger__nav {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--color-1);
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 61% 0;
  }
  .hamburger__nav .nav__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hamburger__nav .nav__wrap .nav__item {
    margin: 15px 0;
  }
  .hamburger__nav .nav__wrap .nav__item a {
    color: var(--color-4);
    font-size: 6vw;
  }
  .hamburger__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 3vw;
    width: 8vw;
    height: 6vw;
    top: 20%;
    z-index: 999;
  }
}

/* 

section mv

*/
.mv {
  width: 100%;
}

.mv .mv__wrap {
  width: 100%;
  background-image: url(../img/main_visual_03.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 54vw;
}

.mv .mv__wrap .mv-title__wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.mv .mv__wrap .mv-title__wrap .mv-title {
  padding: 4vw;
  width: calc(720/1440*100vw);
  background-color: rgba(136, 135, 222, 0.6);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 11vw;
  left: 9vw;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
  height: clamp(calc(500px/3), calc(500/1440*100vw), 500px);
}

.mv .mv__wrap .mv-title__wrap .mv-title .mv-heading {
  z-index: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.mv .mv__wrap .mv-title__wrap .mv-title .mv-heading h1 {
  font-size: var(--font-h1);
  color: var(--color-1);
  line-height: 120%;
}

.mv .mv__wrap .mv-title__wrap .mv-title.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mv .mv__wrap .mv-title__wrap .mv-heading.hidden {
  opacity: 0;
}

.mv .mv__wrap .mv-title__wrap .mv-message {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* h1と同じ位置に出現 */
  opacity: 0;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease, -webkit-transform 0.8s ease;
  white-space: pre-wrap;
  line-height: 1.6;
  z-index: 2;
  font-size: 1.2rem;
  width: 100%;
  padding: 0 4vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mv .mv__wrap .mv-title__wrap .mv-message.visible {
  opacity: 1;
  font-size: var(--font-h3);
}

.mv .mv__wrap .mv-title__wrap .mv-message.slidown {
  -webkit-transform: translate(-50%, 230%);
          transform: translate(-50%, 230%);
  /* 少し下に移動 */
  font-size: var(--font-p-mv-mess);
}

.mv .mv__wrap .mv-title__wrap p {
  color: var(--color-1);
  font-size: var(--font-p-base);
  margin-top: 4%;
}

@media screen and (min-width: 1441px) {
  .mv .mv__wrap {
    height: 750px;
  }
  .mv .mv__wrap .mv-title__wrap .mv-title {
    padding: 40px;
    width: 720px;
    top: 200px;
    left: 140px;
  }
  .mv .mv__wrap .mv-title__wrap .mv-title .mv-message {
    line-height: 1.6;
    font-size: 34px;
    width: 100%;
    padding: 0 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mv .mv__wrap .mv-title__wrap .mv-title .mv-message.visible {
    font-size: 34px;
  }
  .mv .mv__wrap .mv-title__wrap .mv-title .mv-message.slidown {
    -webkit-transform: translate(-50%, 140px);
            transform: translate(-50%, 140px);
    /* 少し下に移動 */
    font-size: 20px;
  }
}

@media (max-width: 450px) {
  .mv {
    width: 100%;
  }
  .mv .mv__wrap {
    height: 88vh;
    background-position: right;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-size: cover;
  }
  .mv .mv__wrap .mv-title__wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    transition: opacity 1s, transform 1s, -webkit-transform 1s;
    height: calc(320/375*100vw);
    top: 20vw;
    padding: 4vw;
  }
  .mv .mv__wrap .mv-title__wrap .mv-title {
    width: 84%;
    background-color: rgba(136, 135, 222, 0.6);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: calc(20/375*100vw);
    height: calc(320/375*100vw);
  }
  .mv .mv__wrap .mv-title__wrap .mv-title .mv-heading {
    z-index: 1;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    color: var(--color-1);
    line-height: 120%;
  }
  .mv .mv__wrap .mv-title__wrap .mv-title .mv-heading h1 {
    font-size: calc(40/375*100vw);
    letter-spacing: 2vw;
  }
  .mv .mv__wrap .mv-title__wrap .mv-title .mv-message {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    /* h1と同じ位置に出現 */
    opacity: 0;
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transition: transform 0.8s ease, opacity 0.8s ease, -webkit-transform 0.8s ease;
    white-space: pre-wrap;
    line-height: 1.6;
    z-index: 2;
    width: 100%;
    padding: 0 4vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: var(--color-1);
    font-size: 4.6vw;
    margin-top: 4%;
  }
  .mv .mv__wrap .mv-title__wrap .mv-title.show {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .mv .mv__wrap .mv-title__wrap .mv-heading.hidden.hidden {
    opacity: 0;
  }
  .mv .mv__wrap .mv-title__wrap .mv-message.visible {
    opacity: 1;
    font-size: calc(20/375*100vw);
  }
  .mv .mv__wrap .mv-title__wrap .mv-message.slidown {
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    /* 少し下に移動 */
    font-size: calc(16/375*100vw);
  }
}

/* 

section profile

*/
.profile {
  position: relative;
  width: 100%;
  background-color: var(--color-3);
  padding: clamp(calc(80px/3), calc(80/1440*100vw), 80px) 0;
}

.profile .__wrap {
  width: clamp(calc(1200px/3), calc(1200/1440*100vw), 1200px);
  max-width: 1440px;
  margin: 0 auto;
}

.profile .__wrap .container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.profile .__wrap .container .content-text {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2vw 0 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.profile .__wrap .container .content-text .text__wrap p {
  letter-spacing: 0.1rem;
  margin-bottom: 2vw;
}

.profile .__wrap .container .content-text .text__wrap p:last-child {
  line-height: 2;
}

.profile .__wrap .container .content-text .text__wrap .__line {
  margin-bottom: 2vw;
  border-bottom: solid 1px #333;
  padding-bottom: 2vw;
}

.profile .__wrap .container .content-img {
  width: 50%;
  padding: 0 0 0 2vw;
}

.profile .__wrap .container .content-img img {
  border-radius: 2rem;
}

@media (min-width: 1441px) {
  .profile {
    padding: 80px 0;
  }
  .profile .profile__wrap {
    width: 1200px;
  }
  .profile .profile__wrap .content-text {
    padding: 0 28.8px 0 0;
  }
  .profile .profile__wrap .content-text .text__wrap p {
    margin-bottom: 28.8px;
  }
  .profile .profile__wrap .content-text .content-img {
    width: 50%;
    padding: 0 0 0 28.8px;
  }
  .profile .profile__wrap .content-text .content-img img {
    border-radius: 32px;
  }
}

@media (max-width: 450px) {
  .profile {
    position: relative;
    width: 100%;
    background-color: var(--color-3);
  }
  .profile .__wrap {
    width: 100%;
  }
  .profile .__wrap .container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8% 8vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .profile .__wrap .container .content-text {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1% 0vw;
  }
  .profile .__wrap .container .content-text .text__wrap p {
    letter-spacing: 0.1rem;
    margin-bottom: 1%;
  }
  .profile .__wrap .container .content-text .text__wrap .__line {
    margin-bottom: 4vw;
    border-bottom: solid 1px #333;
    padding-bottom: 4vw;
  }
  .profile .__wrap .container .content-img {
    width: 100%;
    padding: 7% 2vw;
  }
  .profile .__wrap .container .content-img img {
    border-radius: 1rem;
  }
}

/* 

section works

*/
.works {
  position: relative;
  width: 100%;
  background-color: #F2F2F2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4vw 0;
}

.works .works-title__wrap {
  width: clamp(calc(1200px/3), calc(1200/1440*100vw), 1200px);
  max-width: 1440px;
  margin: 0 auto 4vw auto;
}

.works .__wrap {
  width: 100%;
}

.works .__wrap .swiper-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4%;
}

.works .__wrap .swiper-wrapper .swiper-slide {
  width: clamp(300px, 25vw, 360px);
}

.works .__wrap .swiper-wrapper .swiper-slide .content-img {
  width: 100%;
  height: clamp(calc(200px/3), calc(200/1440*100vw), 200px);
}

.works .__wrap .swiper-wrapper .swiper-slide .content-img img {
  border-radius: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  height: clamp(calc(200px/3), calc(200/1440*100vw), 200px);
}

.works .__wrap .swiper-wrapper .swiper-slide .content-text h4 a {
  color: #333;
  font-size: var(--font-p-base);
}

@media (max-width: 450px) {
  .works {
    padding: 20vw 0vw;
  }
  .works .__wrap {
    padding: 0 4vw;
  }
  .works .__wrap .swiper-wrapper {
    padding: 0 4vw;
  }
  .works .__wrap .swiper-wrapper .swiper-slide .content-img {
    width: 100%;
    height: calc(200/375*100vw) !important;
  }
  .works .__wrap .swiper-wrapper .swiper-slide .content-img img {
    border-radius: 1rem;
    -o-object-fit: contain;
       object-fit: contain;
    height: calc(200/375*100vw) !important;
  }
}

/* 

section service

*/
.service {
  width: 100%;
  position: relative;
  background-color: var(--color-3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4% 0vw;
}

.service .service-title__wrap {
  width: clamp(calc(1200px/3), calc(1200/1440*100vw), 1200px);
  max-width: 1440px;
  margin: 0 auto 4vw auto;
}

.service .__wrap {
  width: 100%;
  margin: 0 auto;
}

.service .__wrap .container {
  width: 100%;
  height: clamp(calc(460px/3), calc(460/1440*100vw), 460px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service .__wrap .container .content {
  width: 50%;
  height: clamp(calc(460px/3), calc(460/1440*100vw), 460px);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2% 0;
}

.service .__wrap .container .content .content-bg__color {
  height: clamp(calc(400px/3), calc(400/1440*100vw), 400px);
  background-color: #fff;
  opacity: .7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service .__wrap .container .content .content-bg__color .content-item__wrap {
  width: clamp(calc(720px/3), calc(720/1440*100vw), 720px);
  padding: clamp(calc(20px/3), calc(20/1440*100vw), 20px);
}

.service .__wrap .container .content .content-bg__color .content-item__wrap .content-title {
  padding: 10% 1vw 4% 1vw;
  width: 100%;
  text-align: center;
}

.service .__wrap .container .content .content-bg__color .content-item__wrap .content-title h4 {
  font-size: var(--font-h4);
}

.service .__wrap .container .content .content-bg__color .content-item__wrap .content-text {
  padding: 0% 1vw 2% 1vw;
}

.service .__wrap .container .content-1 {
  background-image: url(../img/service_01.jpg);
}

.service .__wrap .container .content-1 .content-bg__color {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.service .__wrap .container .content-2 {
  background-image: url(../img/service_02.jpg);
}

.service .__wrap .container .content-2 .content-bg__color {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 450px) {
  .service .__wrap .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .service .__wrap .container .content {
    width: 100%;
    height: auto;
    position: relative;
    padding: 2vw 0;
  }
  .service .__wrap .container .content .content-bg__color {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
  }
  .service .__wrap .container .content .content-bg__color .content-item__wrap {
    width: 100%;
    padding: 0;
  }
  .service .__wrap .container .content .content-bg__color .content-item__wrap .content-text {
    padding: 0 4vw 4vw;
    line-height: 1.6;
    width: 100%;
  }
}

.contact {
  width: 100%;
  padding: 100px 0;
}

.contact .__wrap {
  margin: 0 auto;
  width: 1200px;
  max-width: 1440px;
}

.contact .__wrap .section-title__wrap h4 {
  font-size: var(--font-h4);
}

.contact .__wrap .section-title__wrap h2 {
  font-size: var(--font-h2);
}

.contact .__wrap .form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 900px;
  margin: 0 auto;
}

.contact .__wrap .form__wrap p {
  font-size: var(--font-h3);
}

.contact .__wrap .form__wrap input {
  width: 100%;
  height: 50px;
}

.contact .__wrap .form__wrap textarea {
  width: 100%;
  height: 400px;
}

.contact .__wrap .form__wrap button {
  margin: 30px auto 0 auto;
  width: 200px;
  height: 50px;
  background-color: #FFF;
}
/*# sourceMappingURL=style.css.map */