/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
  --text-color: #0c0c25;
  --red: red;
  --yellow: #fff54d;
  --blue: #0f3675;
  --blue-light: #ccedf9;

  --text-shadow: 0 0px 6px #33a1d5,
                  0 0px 12px #2b81a8;
  
  --font-din: 'din-2014', sans-serif;
}

/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-color);
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}
body.is-fixed {
  overflow: hidden;
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}

.mb-0 {
  margin-bottom: 0;
}
.mt-1 {
  margin-top: 0.5em;
}
.mt-2 {
  margin-top: 1em;
}
.mt-4 {
  margin-top: 2em;
}

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

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.link-tel {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .link-tel {
    pointer-events: none;
  }
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}

.hover {
  
}
@media only screen and (min-width: 751px) {
  .hover:hover {
    opacity: 0.8;
  }
}

.hoverTxt {
  text-decoration: none;
  color: inherit;
}
.hoverTxt:hover {
  text-decoration: underline;
}

.img-shadow {
  position: relative;
  display: inline-block;
  &:after {
    content: "";
    background-image: var(--shadow-img);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
  }
}
.title-primary {
  color: #fff;
  .en {
    display: inline-block;
    padding-left: 35px;
    position: relative;
    font-family: var(--font-din);
    font-weight: 200;
    letter-spacing: 0.1em;
    font-size: 20px;
    @media screen and (max-width: 1440px){
      font-size: calc( 20 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      font-size: calc( 25 / 828 * 100vw );
      padding-left: calc( 42 / 828 * 100vw );
    }
    &:before {
      content: "";
      background: url(../img/icon_title.png) no-repeat center/contain;
      width: 24px;
      aspect-ratio: 24 / 16;
      position: absolute;
      top: 5px;
      left: 0px;
      @media screen and (max-width: 1440px){
        width: calc( 24 / 1480 * 100vw );
        top: calc( 5 / 1480 * 100vw );
      }
      @media screen and (max-width: 750px){
        width: calc( 30 / 828 * 100vw );
        top: calc( 8 / 828 * 100vw );
      }
    }
  }
  .ja {
    font-size: 45px;
    margin-top: 8px;
    letter-spacing: 0.05em;
    line-height: 1.2;
    display: block;
    span {
      display: inline-block;
      position: relative;
      z-index: 1;
      &:before {
        content: "";
        width: 1.2em;
        height: 1.2em;
        background-color: #1e95d7;
        position: absolute;
        top: 0.05em;
        left: -0.06em;
        z-index: -1;
        @media screen and (max-width: 750px){
          top: 0.07em;
        }
      }
    }
    small {
      font-size: 70%;
    }
    @media screen and (max-width: 1440px){
      font-size: calc( 45 / 1480 * 100vw );
      margin-top: calc( 8 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      font-size: calc( 60 / 828 * 100vw );
      line-height: 1.4;
    }
  }
  &.-light {
    color: var(--blue);
    .ja {
      span {
        &:before {
          background-color: #46b5e4;
        }
      }
    }
    .en {
      &:before {
        background: url(../img/icon_title_medium.png) no-repeat center/contain;
      }
    }
  }
  &.-elight {
    color: var(--blue);
    .ja {
      span {
        &:before {
          background-color: #57c3ea;
        }
      }
    }
    .en {
      &:before {
        background: url(../img/icon_title_light.png) no-repeat center/contain;
      }
    }
  }
  &.-center {
    text-align: center;
    @media screen and (max-width: 750px){
      text-align: left;
    }
  }
}
.color-yellow {
  color: var(--yellow);
}
.color-red {
  color: var(--red);
}
.title-secondary {
  font-size: 20px;
  border-left: 6px solid var(--text-color);
  font-weight: bold;
  padding-left: 20px;
}
.text-small {
  font-size: 14px;
}

.btn-primary {
  border-radius: 50vh;
  position: relative;
  display: inline-block;
  padding: 10px 4em 10px 2em;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  background-color: var(--blue);
  min-width: 190px;
  &:hover {
    opacity: 0.8;
  }
  &:after {
    content: "";
    background: url(../img/arrow_right_white.png) no-repeat center / contain;
    width: 10px;
    aspect-ratio: 12 / 17;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
}

/* ----------------------------------------------------------------------
 Layout
---------------------------------------------------------------------- */
.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 96px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  @media screen and (max-width: 1440px){
    height: calc( 86 / 1480 * 100vw );
  }
  @media screen and (max-width: 1000px){
    height: 50px;
  }
  &.is-fixed {
    position: fixed;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    z-index: 10000;
    width: 100%;
    top: 0;
    left: 0;
    .headerNavi li a {
      color: var(--text-color);
      &:after {
        text-shadow: none;
      }
    }
  }
}
.header__inner {
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1000;
  @media screen and (max-width: 1000px) {
    display: none;
  }
}
.logo__fixed {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10000;
  width: 108px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  &.is-fixed {
    opacity: 1;
    pointer-events: auto;
  }
  @media screen and (max-width: 1440px){
    width: calc( 108 / 1480 * 100vw );
    top: calc( 20 / 1480 * 100vw );
    left: calc( 20 / 1480 * 100vw );    
  }
  @media screen and (max-width: 750px){
    width: calc( 100 / 828 * 100vw );
    top: calc( 22 / 828 * 100vw );
    left: calc( 22 / 828 * 100vw );
  }
}
.header__menu {
  @media screen and (min-width: 1001px){
    display: none !important;
  }
  width: 30px;
  height: 13px;
  position: fixed;
  z-index: 20001;
  top: 18px;
  right: 10px;
  span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--blue);
    position: absolute;
    left: 0px;
    transition: all 0.3s ease;
    &:first-child {
      top: 0px;
    }
    &:last-child {
      bottom: 0px;
    }
  }
  &.is-close {
    span {
      &:first-child {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
      }
      &:last-child {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
      }
    }
  }
}
.header__right {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 20px;
  @media screen and (max-width: 1440px){
    padding-top: calc( 20 / 1480 * 100vw );
  }
}
.headerNavi {
  display: flex;
  position: relative;
  li {
    margin-right: 2em;
    position: relative;
    a {
      font-size: 20px;
      color: #fff;
      text-decoration: none;
      display: inline-block;
      position: relative;
      transition: color 0.3s ease, text-shadow 0.3s ease;
      @media screen and (max-width: 1440px){
        font-size: calc( 20 / 1480 * 100vw );
      }
      &:after {
        content: attr(data-text);
        position: absolute;
        top: 0px;
        left: 0px;
        text-shadow: rgba( 87, 195, 234, 0.8 ) 1px 1px 5px;
        mix-blend-mode: multiply;
      }
    }
  }
}
.logo {
  position: absolute;
  top: calc( 30 / 1920 * 100vw );
  left: calc( 98 / 1920 * 100vw );
  width: calc( 212 / 1920 * 100vw );
  @media screen and (max-width: 750px){
    top: 0px;
    left: 0px;
    width: 100px;
    &:after {
      display: none !important;
    }
  }
}
.header__btn {
  a {
    width: calc( 200 / 1920 * 100vw );
    height: calc( 56 / 1920 * 100vw );
    background-color: var(--yellow);
    border-radius: 50vh;
    display: flex;
    align-items: center;
    padding: 0 0 0 calc( 36 / 1920 * 100vw );
    font-size: calc( 19.2 / 1920 * 100vw );
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    &:after {
      content: "";
      background: url(../img/arrow_right.png) no-repeat center / contain;
      width: calc( 12 / 1920 * 100vw );
      aspect-ratio: 12/ 17;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: calc( 24 / 1920 * 100vw );
    }
  }
}

.spMenu {
  @media screen and (min-width: 1001px){
    display: none !important;
  }
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 20000;
  padding-top: 115px;
  background-color: #c4e3ef;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  &.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.spMenu__logo {
  position: absolute;
  @media screen and (max-width: 750px){
    width: calc(100 / 828 * 100vw);
    top: calc(22 / 828 * 100vw);
    left: calc(22 / 828 * 100vw);
  }
}
.spMenu__inner {
  max-width: 290px;
  margin: 0 auto;
}
.spMenu__navi {
  display: flex;
  justify-content: space-between;
  ul {
    width: 50%;
  }
  li {
    font-size: 20px;
    a {
      color: var(--blue);
      text-decoration: none;
    }
    + li {
      margin-top: 35px;
    }
  }
}
.spMenu__btn {
  margin-top: 45px;
  a {
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--blue);
    font-size: 20px;
    text-decoration: none;
    background-color: var(--yellow);
    border-radius: 50vh;
    &:after {
      content: "";
      background: url(../img/arrow_right.png) no-repeat center / contain;
      width: 12px;
      height: 18px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 20px;
    }
    &.-white {
      background-color: #fff;
    }
    + a {
      margin-top: 20px;
    }
  }
}
.spMenu__tel {
  margin-top: 45px;
  text-align: center;
  img {
    margin-right: 8px;
    width: 28px;
    position: relative;
    top: -5px;
  }
  a {
    font-size: 30px;
    color: var(--blue);
    text-decoration: none;
    font-family: var(--font-din);
    font-weight: bold;
  }
}

.intro {
  padding-top: 136px;
  padding-bottom: 450px;
  color: #fff;
  background-image: url(../img/bg_intro.png);
  background-repeat: no-repeat;
  background-position: calc(50% - 130px) -10px;
  background-size: 2166px auto;
  background-color: #57c3ea;
  @media screen and (max-width: 1480px){
    padding-top: calc( 136 / 1480 * 100vw );
    padding-bottom: calc( 450 / 1480 * 100vw );
    background-size: calc( 2166 / 1480 * 100vw ) auto;
    background-position: calc( 50% - 130 / 1480 * 100vw ) calc( -10 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding-top: 0;
    padding-bottom: calc( 778 / 828 * 100vw );
    background-image: url(../img/thumb_intro_sp.png);
    background-position: center bottom;
    background-size: contain;
  }
}
.container {
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0 12%;
  }
}
.intro__inner {
  padding-left: 220px;
  position: relative;
  @media screen and (max-width: 1480px){
    padding-left: calc( 220 / 1920 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: 0;
  }
}
.intro__title {
  font-size: 35px;
  letter-spacing: 0.08em;
  line-height: 1.85;
  text-shadow: var(--text-shadow);
  @media screen and (max-width: 1480px){
    font-size: calc( 35 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 40 / 828 * 100vw );
    letter-spacing: normal;
  }
}
.intro__text {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin-top: 1em;
  text-shadow: var(--text-shadow);
  @media screen and (max-width: 1480px){
    font-size: calc( 18 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 30 / 828 * 100vw );
    margin-top: calc( 44 / 828 * 100vw );
  }
}
.intro__thumb {
  position: absolute;
  @media screen and (max-width: 750px){
    display: none;
  }
  &.-thumb01 {
    top: -95px;
    right: 147px;
    width: 413px;
    @media screen and (max-width: 1480px){
      top: calc( -95 / 1480 * 100vw );
      right: calc( 147 / 1480 * 100vw );
      width: calc( 413 / 1480 * 100vw );
    }
  }
  &.-thumb02 {
    top: 387px;
    right: 68px;
    width: 250px;
    @media screen and (max-width: 1480px){
      top: calc( 387 / 1480 * 100vw );
      right: calc( 68 / 1480 * 100vw );
      width: calc( 250 / 1480 * 100vw );
    }
  }
  &.-thumb03 {
    top: 424px;
    right: 468px;
    width: 413px;
    @media screen and (max-width: 1480px){
      top: calc( 424 / 1480 * 100vw );
      right: calc( 468 / 1480 * 100vw );
      width: calc( 300 / 1480 * 100vw );
    }
  }
}
.message {
  padding-bottom: 150px;
  background-color: #57c3ea;
  position: relative;
  overflow: hidden;
  @media screen and (max-width: 1440px){
    padding-bottom: calc( 150 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding-top: calc( 70 / 828 * 100vw );
  }
  &:before {
    content: "";
    background: url(../img/bg_message_left.png) no-repeat center / contain;
    width: 333px;
    aspect-ratio: 333 / 183;
    position: absolute;
    top: 490px;
    left: calc(50% - 1044px);
    @media screen and (max-width: 1440px){
      width: calc( 333 / 1480 * 100vw );
      top: calc( 490 / 1480 * 100vw );
      left: calc( 50% - ( 1044 / 1480 * 100vw ) );
    }
    @media screen and (max-width: 750px){
      display: none;
    }
  }
  &:after {
    content: "";
    background: url(../img/bg_message_right.png) no-repeat center / contain;
    width: 676px;
    aspect-ratio: 676 / 817;
    position: absolute;
    top: 69px;
    right: calc(50% - 1026px);
    @media screen and (max-width: 1440px){
      width: calc( 676 / 1480 * 100vw );
      top: calc( 69 / 1480 * 100vw );
      right: calc( 50% - ( 1026 / 1480 * 100vw ) );
    }
    @media screen and (max-width: 750px){
      display: none;
    }
  }
}
.message__inner {
  padding-left: 68px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 1440px){
    padding-left: calc( 68 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    display: block;
    padding: 0;
  }
}
.message__left {
  width: 660px;
  @media screen and (max-width: 1440px){
    width: calc( 660 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.message__subtitle {
  font-size: 35px;
  color: #fff;
  text-shadow: var(--text-shadow);
  margin-top: 60px;
  @media screen and (max-width: 1440px){
    font-size: calc( 35 / 1480 * 100vw );
    margin-top: calc( 60 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 40 / 828 * 100vw );
    margin-top: calc( 64 / 828 * 100vw );
  }
}
.message__text {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  margin-top: 24px;
  text-shadow: var(--text-shadow);
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-top: calc( 24 / 1480 * 100vw) ;
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    margin-top: calc( 32 / 828 * 100vw );
  }
}
.message__name {
  text-align: right;
  font-size: 25px;
  letter-spacing: 0.05em;
  margin-top: 16px;
  color: #fff;
  text-shadow: var(--text-shadow);
  position: relative;
  z-index: 2;
  @media screen and (max-width: 1440px){
    font-size: calc( 25 / 1480 * 100vw );
    margin-top: calc( 16 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    margin-top: calc( 60 / 828 * 100vw );
    font-size: calc( 34.5 / 828 * 100vw );
  }
  small {
    font-size: 20px;
    @media screen and (max-width: 1440px){
      font-size: calc( 20 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      font-size: calc( 25.3 / 828 * 100vw );
    }
  }
}
.message__right {
  margin-top: 144px;
  width: 564px;
  @media screen and (max-width: 1440px){
    margin-top: calc( 144 / 1480 * 100vw );
    width: calc( 564 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: 100vw;
    margin-left: -12vw;
    margin-top: calc( -60 / 828 * 100vw );
    position: relative;
    z-index: 1;
  }
}

.strength {
  padding-bottom: 314px;
  background: url(../img/bg_paint_01.png) no-repeat center bottom;
  background-size: contain;
  background-color: #57c3ea;
  @media screen and (max-width: 1440px){
    padding-bottom: calc( 314 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding-bottom: calc( 180 / 828 * 100vw );
  }
}
.strengthHead {
  display: flex;
  align-items: flex-end;
  padding-left: 68px;
  @media screen and (max-width: 1440px){
    padding-left: calc( 68 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: 0;
    display: block;
  }
}
.strengthHead__text {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.8;
  margin-left: 60px;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-left: calc( 60 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    margin-top: calc( 50 / 828 * 100vw );
  }
}
.strengthList {
  display: flex;
  margin-top: 90px;
  @media screen and (max-width: 1440px){
    margin-top: calc( 90 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    margin-top: calc( 50 / 828 * 100vw );
    display: block;
  }
}
.strengthList__item {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: rgba(87,195,234,0.4) 2px 8px 8px;
  padding: 90px 100px 0;
  overflow: hidden;
  position: relative;
  @media screen and (max-width: 1440px){
    width: calc( 500 / 1480 * 100vw );
    height: calc(500 / 1480 * 100vw);
    padding: calc( 90 / 1480 * 100vw ) calc( 90 / 1480 * 100vw ) 0;
  }
  @media screen and (max-width: 750px){
    width: calc( 625 / 828 * 100vw );
    height: calc( 625 / 828 * 100vw );
    padding: calc( 90 / 828 * 100vw ) calc( 100 / 828 * 100vw ) 0;
    position: relative;
    &:nth-child(1) {
      z-index: 3;
    }
    &:nth-child(2) {
      z-index: 2;
    }
    &:nth-child(3) {
      z-index: 1;
    }
  }
  + .strengthList__item {
    margin-left: -30px;
    @media screen and (max-width: 1440px){
      margin-left: calc( -30 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      margin-left: 0;
      margin-top: calc( -50 / 828 * 100vw );
    }
  }
}
.strengthList__tag {
  display: flex;
  background-color: #57c3ea;
  border-radius: 50vh;
  align-items: center;
  @media screen and (max-width: 750px){
    margin: 0 auto;
    width: calc( 355 / 828 * 100vw );
  }
  .en {
    display: block;
    width: 178px;
    padding: 2px 0;
    text-align: center;
    border-right: 2px solid #fff;
    color: #fff54d;
    font-family: var(--font-din);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.1em;
    @media screen and (max-width: 1440px){
      width: calc( 178 / 1480 * 100vw );
      padding: calc( 2 / 1480 * 100vw ) 0;
      font-size: calc( 20 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      font-size: calc( 25 / 828 * 100vw );
      width: calc( 222 / 828 * 100vw );
      padding: calc( 2 / 828 * 100vw ) 0;
    }
  }
  .ja {
    flex: 1;
    text-align: center;
    font-size: 20px;
    color: var(--blue);
    letter-spacing: 0.2em;
    @media screen and (max-width: 1440px){
      font-size: calc( 20 / 1440 * 100vw );
    }
    @media screen and (max-width: 750px){
      font-size: calc( 25 / 828 * 100vw );
      line-height: 1;
    }
  }
}
.strengthList__title {
  margin-top: 30px;
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1.72em;
  color: var(--blue);
  @media screen and (max-width: 1440px){
    margin-top: calc( 30 / 1480 * 100vw );
    font-size: calc( 25 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 35 / 828 * 100vw );
    margin-top: calc( 40 / 828 * 100vw );
  }
}
.strengthList__text {
  font-size: 18px;
  line-height: 1.67;
  margin-top: 16px;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-top: calc( 16 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
  }
}
.strengthList__num {
  color: #57c3ea;
  font-size: 130px;
  font-weight: 600;
  font-family: var(--font-din);
  line-height: 1;
  position: absolute;
  bottom: 5px;
  right: 94px;
  opacity: 0.7;
  @media screen and (max-width: 1440px){
    font-size: calc( 130 / 1480 * 100vw );
    bottom: calc( 5 / 1480 * 100vw );
    right: calc( 94 / 1480 * 100vw );
  }
}
.works {
  padding: 40px 0 120px;
  overflow: hidden;
  background: url(../img/bg_works.png) no-repeat center 434px / 1440px;
  background-color: var(--blue-light);
  @media screen and (max-width: 1440px){
    padding: calc( 40 / 1480 * 100vw ) 0 calc( 120 / 1480 * 100vw );
    background-position: center calc( 434 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: calc( 76 / 828 * 100vw ) 0 0;

  }
}
.worksHead {
  display: flex;
  align-items: flex-end;
  padding-left: 68px;
  @media screen and (max-width: 1440px){
    padding-left: calc( 68 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    display: block;
    padding: 0;
  }
}
.worksHead__text {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-left: 60px;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-left: calc( 60 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    margin-top: calc( 50 / 828 * 100vw );
    margin-left: 0;
  }
}
.worksList {
  margin-top: 110px;
  @media screen and (max-width: 1440px){
    margin-top: calc( 110 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    margin-top: calc( 70 / 828 * 100vw );
  }
}
.worksList__item {
  height: 600px;
  position: relative;
  padding: 0 0 0 68px;
  @media screen and (max-width: 1440px){
    height: calc( 600 / 1480 * 100vw );
    padding: 0 0 0 calc( 68 / 1480 * 100vw );
  }
  + .worksList__item {
    margin-top: 96px;
    @media screen and (max-width: 1440px){
      margin-top: calc( 96 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      margin-top: 0;
    }
  }
  @media screen and (min-width: 1441px){
    &:nth-child(2n) {
      padding: 0 68px 0 0;
      .worksList__thumb {
        right: auto;
        left: calc(50% - 960px);
        .tag {
          left: auto;
          right: 0px;
          border-radius: 0 0 0 30px;
        }
      }
      .worksList__inner {
        left: auto;
        right: 68px;
      }
    }
  }
  @media screen and (max-width: 1440px) and (min-width: 751px) {
    &:nth-child(2n) {
      padding: 0 calc( 68 / 1480 * 100vw ) 0 0;
      .worksList__thumb {
        right: auto;
        left: -18vw;
        .tag {
          left: auto;
          right: 0px;
          border-radius: 0 0 0 calc( 30 / 1480 * 100vw );
        }
      }
      .worksList__inner {
        left: auto;
        right: calc( 68 / 1480 * 100vw );
      }
    }
  }
  @media screen and (max-width: 750px){
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    &:nth-child(2n) {
      .tag {
        left: auto;
        right: 0px;
        border-radius: 0 0 0 calc(30 / 828 * 100vw);
      }
      .worksList__inner {
        left: auto;
        right: auto;
        left: calc( 148 / 828 * 100vw )
      }
    }
  }
}
.worksList__thumb {
  position: absolute;
  top: 0px;
  right: calc(50% - 960px);
  width: 1276px;
  @media screen and (max-width: 1440px){
    right: calc( -18vw );
    width: calc( 1276 / 1480 * 100vw);
  }
  @media screen and (max-width: 750px){
    position: static;
    width: 100vw;
    margin-left: -12vw;
  }
  .tag {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 0 30px;
    height: 77px;
    background-color: #52bfe8;
    color: var(--blue);
    font-size: 35px;
    letter-spacing: 0.1em;
    border-radius: 0 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    @media screen and (max-width: 1440px){
      padding: 0 calc( 30 / 1480 * 100vw );
      font-size: calc( 35 / 1480 * 100vw );
      height: calc( 77 / 1480 * 100vw );
      border-radius: 0 0 calc( 30 / 1480 * 100vw ) 0;
    }
    @media screen and (max-width: 750px){
      height: calc( 77 / 828 * 100vw );
      font-size: calc( 35 / 828 * 100vw );
      padding: 0 calc( 30 / 828 * 100vw );
      border-radius: 0 0 calc( 30 / 828 * 100vw ) 0;
    }
  }
}
.worksList__inner {
  width: 540px;
  height: 220px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: rgba(87,195,234,0.4) 2px 8px 8px;
  padding: 50px 40px 0;
  position: absolute;
  bottom: 56px;
  left: 68px;
  z-index: 2;
  @media screen and (max-width: 1440px){
    width: calc( 540 / 1480 * 100vw );
    height: calc( 220 / 1480 * 100vw );
    padding: calc( 50 / 1480 * 100vw ) calc( 40 / 1480 * 100vw ) 0;
    bottom: calc( 56 / 1480 * 100vw );
    left: calc( 68 / 1480 * 100vw );
    border-radius: calc( 30 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: calc( 540 / 828 * 100vw );
    position: relative;
    bottom: auto;
    top: calc( -70 / 828 * 100vw );
    left: calc( -60 / 828 * 100vw );
    border-radius: calc( 30 / 828 * 100vw );
    padding: calc( 40 / 828 * 100vw ) calc( 50 / 828 * 100vw );
    height: auto;
  }
}
.worksList__title {
  font-size: 25px;
  letter-spacing: 0.05em;
  color: var(--blue);
  @media screen and (max-width: 1440px){
    font-size: calc( 25 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 35 / 828 * 100vw );
  }
}
.worksList__text {
  font-size: 18px;
  line-height: 1.67;
  margin-top: 16px;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-top: calc( 16 / 1480 * 100vw) ;
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
  }
}

.promise {
  padding-bottom: 96px;
  background: url(../img/bg_paint_02.png) no-repeat center bottom / contain;
  background-color: var(--blue-light);
  @media screen and (max-width: 1440px){
    padding-bottom: calc( 96 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding-top: calc( 90 / 828 * 100vw );
    padding-bottom: calc( 100 / 828 * 100vw );
    background-size: 180vw;
  }
}
.promise__title {
  padding-left: 56px;
  @media screen and (max-width: 1440px){
    padding-left: calc( 56 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: 0;
  }
}
.promise__text {
  margin-top: 44px;
  padding-left: 56px;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  @media screen and (max-width: 1440px){
    margin-top: calc( 44 / 1480 * 100vw );
    padding-left: calc( 56 / 1480 * 100vw );
    font-size: calc( 18 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    margin-top: calc( 50 / 828 * 100vw );
    margin-left: 0;
    padding: 0;
  }
}
.promise__content {
  @media screen and (max-width: 750px){
    position: relative;
  }
}
.promise__img {
  @media screen and (max-width: 750px){
    position: absolute;
    top: calc( 100 / 828 * 100vw );
    left: calc( -42 / 828 * 100vw );
    width: calc( 382 / 828 * 100vw );
  }
}
.promiseList {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  @media screen and (max-width: 1440px){
    padding: 0 calc( 40 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    flex-direction: column;
    padding: 0 0 0 calc( 380 / 828 * 100vw );
    margin-right: calc( -64 / 828 * 100vw );
    margin-top: calc( 100 / 828 * 100vw );
    gap: calc( 180 / 828 * 100vw );
  }
}
.promiseList__item {
  width: 362px;
  @media screen and (max-width: 1440px){
    width: calc( 362 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.promiseList__title {
  text-align: center;
  color: var(--blue);
  @media screen and (max-width: 750px){
    text-align: left;
  }
  .en {
    font-size: 40px;
    letter-spacing: 0.1em;
    display: block;
    @media screen and (max-width: 1440px){
      font-size: calc( 40 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      font-size: calc( 45 / 828 * 100vw );
    }
  }
  .ja {
    font-size: 25px;
    letter-spacing: 0.1em;
    @media screen and (max-width: 1440px){
      font-size: calc( 25 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      font-size: calc( 30 / 828 * 100vw );
    }
  }
}
.promiseList__text {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 28px;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-top: calc( 28 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    margin-top: 0.8em;
  }
}

.impression {
  padding-top: 80px;
  padding-bottom: 320px;
  background: url(../img/bg_paint_03.png) no-repeat center bottom / contain;
  background-color: #57c3ea;
  position: relative;
  z-index: 1;
  overflow: hidden;
  @media screen and (max-width: 1440px){
    padding-top: calc( 80 / 1480 * 100vw );
    padding-bottom: calc( 320 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding-top: calc( 110 / 828 * 100vw );
    padding-bottom: calc( 290 / 828 * 100vw );
    background-size: 180vw;
  }
  &:after {
    content: "";
    position: absolute;
    left: calc( 50% - 960px - 202px );
    bottom: 160px;
    z-index: -1;
    width: 2176px;
    aspect-ratio: 2176 / 543;
    background: url(../img/bg_impression.png) no-repeat center / contain;
    @media screen and (max-width: 1440px){
      bottom: calc( 160 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      background: url(../img/bg_impression_sp.png) no-repeat center / contain;
      bottom: calc( 128 / 828 * 100vw );
      width: 100%;
      left: 0;
      aspect-ratio: 828 / 432;
    }
  }
}
.impression__title {
  text-align: center;
  color: #fff;
  text-shadow: var(--text-shadow);
  font-size: 35px;
  letter-spacing: 0.08em;
  @media screen and (max-width: 1440px){
    font-size: calc( 35 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 45 / 828 * 100vw );
    margin: 0 -2em;
  }
}
.impression__read {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
  width: 640px;
  margin: 24px auto 0;
  text-align: center;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    width: calc( 640 / 1480 * 100vw );
    margin-top: calc( 24 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    width: 100%;
  }
}
.impressionHead {
  display: flex;
  position: relative;
  z-index: 1;
  padding: 0 296px 0 140px;
  justify-content: space-between;
  margin: 90px 0 -30px;
  @media screen and (max-width: 1440px){
    padding: 0 calc( 296 / 1480 * 100vw ) 0 calc( 140 / 1480 * 100vw );
    margin: calc( 90 / 1480 * 100vw ) 0 calc( -30 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    margin: calc( 80 / 828 * 100vw ) calc( -30 / 828 * 100vw ) calc( -36 / 828 * 100vw ) calc( -60 / 828 * 100vw );
    padding: 0;
  }
}
.impressionHead__icon {
  width: 245px;
  height: 65px;
  border-radius: 50vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--blue);
  letter-spacing: 0.1em;
  box-shadow: rgba(87,195,234,0.4) 2px 8px 8px;
  @media screen and (max-width: 1440px){
    width: calc( 245 / 1480 * 100vw );
    height: calc( 65 / 1480 * 100vw );
    font-size: calc( 25 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 25 / 828 * 100vw );
    width: calc( 245 / 828 * 100vw );
    height: calc( 65 / 828 * 100vw );
  }
  &.-right {
    background-color: var(--blue);
    color: #fff;
    span {
      color: var(--yellow);
    }
  }
}
.impressionList {
  max-width: 1440px;
  margin: 0 auto 0;
  @media screen and (max-width: 750px){
    margin: 0 -12vw;
  }
}
.impressionList__item {
  + .impressionList__item {
    margin-top: 10px;
    @media screen and (max-width: 1440px){
      margin-top: calc( 10 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      margin-top: calc( 10 / 828 * 100vw );
    }
  }
}
.impression__message {
  text-align: center;
  margin-top: 80px;
  font-size: 40px;
  color: #fff;
  letter-spacing: .1em;
  text-shadow: var(--text-shadow);
  @media screen and (max-width: 1440px){
    font-size: calc( 40 / 1480 * 100vw );
    margin-top: calc( 80 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 45 / 828 * 100vw );
    margin-top: calc( 100 / 828 * 100vw );
  }
  small {
    font-size: 90%;
  }
  .bg-blue {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #fff;
    &:before {
      content: "";
      width: calc(100% + 0.12em);
      height: 1.2em;
      background-color: #1e95d7;
      position: absolute;
      top: 0.16em;
      left: -0.06em;
      z-index: -1;
    }
  }
}
.trip {
  padding-top: 100px;
  @media screen and (max-width: 1440px){
    padding-top: calc( 100 / 1480 * 100vw );
  }
}
.trip__inner {
  padding: 0 68px;
  @media screen and (max-width: 1440px){
    padding: 0 calc( 68 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: 0;
  }
}
.trip__title {
  small {
    display: block;
    margin-top: 0.2em;
  }
}
.trip__text {
  margin-top: 40px;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  @media screen and (max-width: 1440px){
    margin-top: calc( 40 / 1480 * 100vw );
    font-size: calc( 18 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    margin-top: 1.2em;
  }
}
.tripList {
  display: flex;
  gap: 45px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
  @media screen and (max-width: 1440px){
    gap: calc( 45 / 1480 * 100vw ) 0;
    margin-top: calc( 70 / 1480 * 100vw ); 
  }
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: calc( 24 / 828 * 100vw );
  }
}
.tripList__item {
  width: 620px;
  background-color: var(--blue-light);
  display: flex;
  align-items: center;
  @media screen and (max-width: 1440px){
    width: calc( 620 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: 100%;
  }
  &.-large {
    width: 100%;
    @media screen and (max-width: 750px){
      display: block;
    }
    .tripList__thumb {
      width: 620px;
      @media screen and (max-width: 1440px){
        width: calc( 620 / 1480 * 100vw );
      }
      @media screen and (max-width: 750px){
        width: 100%;
      }
    }
    .tripList__info {
      @media screen and (max-width: 750px){
        padding: calc( 40 / 828 * 100vw ) calc( 70 / 828 * 100vw ) calc( 45 / 828 * 100vw );
      }
    }
  }
}
.tripList__thumb {
  width: 312px;
  @media screen and (max-width: 1440px){
    width: calc( 312 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: calc( 312 / 828 * 100vw );
  }
}
.tripList__info {
  flex: 1;
  padding: 0 40px;
  @media screen and (max-width: 1440px){
    padding: 0 calc( 40 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: 0 calc( 30 / 828 * 100vw );
  }
}
.tripList__tag {
  display: inline-block;
  background-color: var(--yellow);
  font-size: 16px;
  font-family: var(--font-din);
  font-weight: 200;
  letter-spacing: 0.1em;
  padding: 0px 10px;
  border-radius: 50vh;
  @media screen and (max-width: 1440px){
    font-size: calc( 16 / 1480 * 100vw );
    padding: 0 calc( 10 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 20 / 828 * 100vw );
    padding: 0 calc( 10 / 828 * 100vw );
  }
}
.tripList__title {
  font-size: 25px;
  color: var(--blue);
  margin-top: 15px;
  @media screen and (max-width: 1440px){
    font-size: calc( 25 / 1480 * 100vw );
    margin-top: calc( 15 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 35 / 828 * 100vw );
    margin-top: 0.2em;
  }
}
.tripList__text {
  font-size: 18px;
  line-height: 1.67;
  margin-top: 10px;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-top: calc( 10 / 1480 * 100vw) ;
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    margin-top: 0.2em;
    line-height: 1.3;
  }
}
.tripFun {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  @media screen and (max-width: 1440px){
    gap: calc( 18 / 1480 * 100vw );
    margin-top: calc( 20 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    margin-top: calc( 30 / 828 * 100vw );
    flex-direction: column;
    gap: calc( 18 / 828 * 100vw );
  }
}
.tripFun__item {
  flex: 1;
  height: 166px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 18px;
  @media screen and (max-width: 1440px){
    height: calc( 166 / 1480 * 100vw );
    border-radius: calc( 10 / 1480 * 100vw );
    padding: 0 calc( 18 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: calc( 20 / 828 * 100vw ) calc( 40 / 828 * 100vw );
    border-radius: calc( 10 / 828 * 100vw );
  }
}
.tripFun__text {
  font-size: 18px;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
  }
  small {
    font-size: 80%;
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
  }
}
.tripFun__icon {
  position: absolute;
  bottom: 13px;
  right: 13px;
  z-index: -1;
  @media screen and (max-width: 1440px){
    bottom: calc( 13 / 1480 * 100vw );
    right: calc( 13 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    bottom: auto;
    top: 50%;
    right: calc( 20 / 828 * 100vw );
    transform: translateY(-50%);
    img {
      width: auto;
      height: calc( 60 / 828 * 100vw );
    }
  }
}
.ideal {
  padding-top: 120px;
  padding-bottom: 106px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  @media screen and (max-width: 1440px){
    padding-top: calc( 120 / 1480 * 100vw );
    padding-bottom: calc( 106 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: calc( 90 / 828 * 100vw ) 0 calc( 100 / 828 * 100vw );
  }
  &:after {
    content: "";
    width: 1597px;
    aspect-ratio: 1597 / 823;
    background: url(../img/bg_ideal_01.png) no-repeat center / contain;
    position: absolute;
    right: calc(50% - 1287px);
    bottom: 35px;
    z-index: -1;
    @media screen and (max-width: 1440px){
      width: calc( 1597 / 1480 * 100vw );
      right: -36vw;
    }
    @media screen and (max-width: 750px){
      background: url(../img/bg_ideal_01_sp.png) no-repeat center / cover;
      width: 100vw;
      aspect-ratio: 828 / 568;
      top: calc( 484 / 828 * 100vw );
      right: 0;
      bottom: auto;
    }
  }
}
.ideal__title {
  padding-left: 68px;
  @media screen and (max-width: 1440px){
    padding-left: calc( 68 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: 0;
  }
}
.ideal__text {
  font-size: 18px;
  margin-top: 40px;
  letter-spacing: 0.05em;
  padding-left: 68px;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-top: calc( 40 / 1480 * 100vw );
    padding-left: calc(68 / 1480 * 100vw);
  }
  @media screen and (max-width: 750px){
    padding: 0;
    font-size: calc( 27 / 828 * 100vw );
    margin-top: calc( 50 / 828 * 100vw );
  }
}
.ideal__row {
  height: 707px;
  margin-top: 72px;
  position: relative;
  @media screen and (max-width: 1440px){
    height: calc( 707 / 1480 * 100vw );
    margin-top: calc( 72 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    height: auto;
    margin-top: calc( 20 / 828 * 100vw );
    display: flex;
    flex-direction: column-reverse;
  }
}
.ideal__thumb {
  position: absolute;
  top: 0;
  left: calc(50% - 975px);
  width: 936px;
  height: 100%;
  @media screen and (max-width: 1440px){
    left: -18vw;
    width: calc( 936 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    position: static;
    width: auto;
    margin: calc( 30 / 828 * 100vw ) calc( -60 / 828 * 100vw ) 0;
  }
}
.idealMessage {
  position: absolute;
  top: 24px;
  right: calc(50% - 706px);
  width: 708px;
  height: 708px;
  @media screen and (max-width: 1440px){
    right: 1vw;
    width: calc( 708 / 1480 * 100vw );
    height: calc( 708 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    position: relative;
    top: 0;
    right: 0;
    width: calc( 712 / 828 * 100vw );
    height: calc( 692 / 828 * 100vw);
    margin-left: calc( -40 / 828 * 100vw );
  }
}
.idealMessage__item {
  width: 260px;
  height: 260px;
  background-color: #fff;
  border: 3px solid #57c3ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  font-size: 25px;
  position: absolute;
  @media screen and (max-width: 1440px){
    width: calc( 260 / 1480 * 100vw );
    height: calc( 260 / 1480 * 100vw );
    padding: 0 calc( 36 / 1480 * 100vw );
    font-size: calc( 25 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: calc( 260 / 828 * 100vw );
    height: calc(260 / 828 * 100vw);
    padding: 0 calc( 36 / 828 * 100vw );
    font-size: calc( 27 / 828 * 100vw );
    border: 2px solid #57c3ea;
  }
  &.-item01 {
    top: calc( 42 / 708 * 100% );
    left: calc( 0 / 708 * 100% );
    z-index: 4;
  }
  &.-item02 {
    top: calc( 148 / 708 * 100% );
    left: calc( 231 / 708 * 100% );
    z-index: 3;
  }
  &.-item03 {
    top: calc( 24 / 708 * 100% );
    left: calc( 450 / 708 * 100% );
    background-color: #57c3ea;
    z-index: 4;
  }
  &.-item04 {
    top: calc( 348 / 708 * 100% );
    left: calc( 75 / 708 * 100% );
    background-color: #57c3ea;
    z-index: 2;
  }
  &.-item05 {
    top: calc( 447 / 708 * 100% );
    left: calc( 307 / 708 * 100% );
    z-index: 4;
  }
}
.info {
  padding: 80px 0 90px;
  background-color: var(--blue-light);
  @media screen and (max-width: 1440px){
    padding: calc( 80 / 1480 * 100vw ) 0 calc( 90 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: calc( 90 / 828 * 100vw ) 0 calc( 90 / 828 * 100vw );
  }
}
.info__title {
  padding-left: 68px;
  @media screen and (max-width: 1440px){
    padding-left: calc( 68 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: 0;
  }
}
.infoList {
  background-color: #fff;
  margin-top: 50px;
  border-radius: 30px;
  box-shadow: rgba(87,195,234,0.4) 2px 8px 8px;
  padding: 60px 90px;
  display: flex;
  flex-wrap: wrap;
  gap: 66px 0;
  @media screen and (max-width: 1440px){
    margin-top: calc( 50 / 1480 * 100vw );
    padding: calc( 60 / 1480 * 100vw ) calc( 90 / 1480 * 100vw );
    gap: calc( 66 / 1480 * 100vw ) 0;
  }
  @media screen and (max-width: 750px){
    margin-top: calc( 70 / 828 * 100vw );
    border-radius: calc( 30 / 828 * 100vw );
    padding: calc( 30 / 828 * 100vw ) calc( 40 / 828 * 100vw );
    flex-direction: column;
  }
}
.infoList__item {
  width: 33.33%;
  border-right: 1px solid #57c3ea;
  position: relative;
  text-align: center;
  @media screen and (max-width: 750px){
    width: 100%;
    border-right-style: none;
    border-bottom: 1px solid #57c3ea;
    &:last-child {
      border-bottom: none;
    }
  }
  &:before {
    content: "";
    width: calc(100% + 1px);
    height: 1px;
    background-color: #57c3ea;
    top: -30px;
    left: -1px;
    position: absolute;
    @media screen and (max-width: 750px){
      display: none;
    }
  }
  @media screen and (max-width: 1440px){
    &:before {
      top: calc( -30 / 1480 * 100vw );
    }
  }
  @media screen and (min-width: 751px){
    &:nth-child(1),
    &:nth-child(2),
    &:nth-child(3) {
      &:before {
        display: none;
      }
    }
    &:nth-child(3n) {
      border-right: none;
    }
  }
}
.infoList__icon {
  height: 110px;
  @media screen and (max-width: 1440px){
    height: calc( 110 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    height: auto;
    img {
      width: auto;
      height: calc( 110 / 828 * 100vw );
    }
  }
}
.infoList__title {
  font-size: 25px;
  color: var(--blue);
  letter-spacing: 0.1em;
  @media screen and (max-width: 1440px){
    font-size: calc( 25 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 30 / 828 * 100vw );
    margin-top: calc( 40 / 828 * 100vw );
  }
}
.infoList__num {
  font-size: 25px;
  color: var(--blue);
  letter-spacing: 0.1em;
  line-height: 1.3;
  @media screen and (max-width: 1440px){
    font-size: calc( 25 / 1480 * 100vw );
    font-size: calc( 30 / 828 * 100vw );
  }
  .num {
    font-family: var(--font-din);
    font-weight: 600;
    font-size: 80px;
    font-weight: bold;
    @media screen and (max-width: 1440px){
      font-size: calc( 80 / 1480 * 100vw );
      margin: 0 0.1em;
    }
    @media screen and (max-width: 750px){
      font-size: calc( 100 / 828 * 100vw );
    }
  }
}
.welfare {
  background-color: var(--blue-light);
}
.welfare__inner {
  padding: 0 68px;
  @media screen and (max-width: 1440px){
    padding: 0 calc( 68 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding: 0;
  }
}
.welfare__text {
  font-size: 18px;
  margin-top: 40px;
  letter-spacing: 0.05em;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-top: calc( 40 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    margin-top: 1em;
  }
}
.welfare__row {
  display: flex;
  justify-content: space-between;
  position: relative;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: calc( 36 / 828 * 100vw );
    margin: calc( 30 / 828 * 100vw ) 0 0;
  }
}
.welfareList {
  width: 496px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 72px;
  @media screen and (max-width: 1440px){
    width: calc( 496 / 1480 * 100vw );
    margin-top: calc( 72 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: 100%;
    flex-direction: column;
    margin: 0;
    gap: calc( 36 / 828 * 100vw );
  }
}
.welfareList__item {
  background-color: #fff;
  padding: 24px;
  border-radius: 30px;
  box-shadow: rgba(87,195,234,0.4) 2px 8px 8px;
  display: flex;
  align-items: center;
  @media screen and (max-width: 1440px){
    padding: calc( 24 / 1480 * 100vw );
    border-radius: calc( 30 / 1480 * 100vw );
  }
  + .welfareList__item {
    margin-top: 30px;
    @media screen and (max-width: 1440px){
      margin-top: calc( 30 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      margin: 0;
    }
  }
  @media screen and (max-width: 750px){
    padding: calc( 24 / 828 * 100vw );
    border-radius: calc( 30 / 828 * 100vw );
  }
}
.welfareList__icon {
  width: 160px;
  text-align: center;
  @media screen and (max-width: 1440px){
    width: calc( 160 / 1480 * 100vw );
    padding: 0 calc( 20 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: calc( 176 / 828 * 100vw );
    padding: 0 calc( 30 / 828 * 100vw );
  }
}
.welfareList__info {
  flex: 1;
}
.welfareList__tag {
  display: inline-block;
  background-color: var(--yellow);
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 0px 10px;
  border-radius: 50vh;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    padding: 0 calc( 10 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 20 / 828 * 100vw );
    padding: 0 calc( 10 / 828 * 100vw );
  }
}
.welfareList__title {
  font-size: 25px;
  color: var(--blue);
  margin-top: 10px;
  &.-thin {
    letter-spacing: -0.1em;
  }
  @media screen and (max-width: 1440px){
    font-size: calc( 25 / 1480 * 100vw );
    margin-top: calc( 10 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 35 / 828 * 100vw );
    margin-top: 0.2em;
  }
  small {
    font-size: 70%;
  }
}
.welfareList__text {
  font-size: 18px;
  line-height: 1.67;
  margin-top: 10px;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
    margin-top: calc( 10 / 1480 * 100vw) ;
  }
  @media screen and (max-width: 750px){
    font-size: calc( 27 / 828 * 100vw );
    margin-top: 0.2em;
  }
}
.welfare__img {
  width: 404px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 96px;
  @media screen and (max-width: 1440px){
    width: calc( 404 / 1480 * 100vw );
    top: calc( 96 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: calc( 408 / 828 * 100vw );
    margin: calc( 40 / 828 * 100vw ) auto 0;
  }
}
.overview {
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: var(--blue-light);
  @media screen and (max-width: 1440px){
    padding-top: calc( 150 / 1480 * 100vw );
    padding-bottom: calc( 90 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding-top: calc( 60 / 828 * 100vw );
    padding-bottom: calc( 100 / 828 * 100vw );
  }
}
.overview__inner {
  max-width: 1000px;
  margin: 0 auto 0;
  @media screen and (max-width: 1440px){
    max-width: calc( 1000 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    max-width: initial;
  }
}
.overviewList {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2px;
  @media screen and (max-width: 1440px){
    margin-top: calc( 50 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    margin-top: calc( 30 / 828 * 100vw );
    gap: 5px;
  }
}
.overviewList__item {
  width: calc(50% - 1px);
  background-color: #fff;
  padding: 40px 0 40px 100px;
  min-height: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  &.-top {
    justify-content: flex-start;
  }
  @media screen and (max-width: 1440px){
    padding: calc( 40 / 1480 * 100vw ) 0 calc( 40 / 1480 * 100vw ) calc( 100 / 1480 * 100vw );
    min-height: calc( 150 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: 100%;
    padding: calc( 60 / 828 * 100vw ) 0 calc( 40 / 828 * 100vw ) calc( 100 / 828 * 100vw );
    min-height: calc( 190 / 828 * 100vw );
  }
}
.overviewList__title {
  position: absolute;
  font-size: 16px;
  letter-spacing: 0.05em;
  top: 10px;
  left: 14px;
  color: var(--blue);
  @media screen and (max-width: 1440px){
    font-size: calc( 16 / 1480 * 100vw );
    top: calc( 10 / 1480 * 100vw );
    left: calc( 14 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 20 / 828 * 100vw );
    top: calc( 10 / 828 * 100vw );
    left: calc( 14 / 828 * 100vw );
  }
}
.overviewList__text {
  font-size: 20px;
  letter-spacing: 0.05em;
  @media screen and (max-width: 1440px){
    font-size: calc( 20 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: calc( 30 / 828 * 100vw );
  }
}

.footer {
  margin-top: 100px;
  position: relative;
  background-color: #57c3ea;
  color: #fff;
  padding: 80px 0 40px;
  @media screen and (max-width: 1440px){
    padding: calc( 80 / 1480 * 100vw ) 0 calc
    ( 40 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    padding-top: 50px;
    padding-bottom: calc( 40 / 828 * 100vw );
  }
}
.footer__inner {
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 140px;
  @media screen and (max-width: 1440px){
    max-width: calc( 1440 / 1480 * 100vw );
    padding-bottom: calc( 140 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    display: block;
    max-width: initial;
    padding-bottom: 40px;
    text-align: center;
  }
}
.footer__left {
  @media screen and (max-width: 750px){
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer__logo {
  width: 161px;
  @media screen and (max-width: 1440px){
    width: calc( 161 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: 101px;
  }
}
.footer__name {
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-top: 2em;
  @media screen and (max-width: 1440px){
    font-size: calc( 20 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: 13.5px;
    margin-left: 1em;
  }
}
.copyright {
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: 9px;
  }
}
.footer__address {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-top: 1em;
  @media screen and (max-width: 1440px){
    font-size: calc( 18 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: 15px;
    width: 100%;
    margin-top: 2em;
  }
}
.footer__tel {
  font-size: 40px;
  font-weight: bold;
  font-family: var(--font-din);
  letter-spacing: 0.1em;
  @media screen and (max-width: 1440px){
    font-size: calc( 40 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    font-size: 30px;
  }
  img {
    position: relative;
    top: -3px;
    left: -3px;
    @media screen and (max-width: 1440px){
      top: calc( -3 / 1480 * 100vw );
      left: calc( -3 / 1480 * 100vw );
    }
    @media screen and (max-width: 750px){
      width: 28px;
      top: -3px;
      left: -3px;
    }
  }
}
.gotop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 100;
  width: 74px;
  @media screen and (max-width: 1440px){
    width: calc( 74 / 1480 * 100vw );
    right: calc( 40 / 1480 * 100vw );
    bottom: calc( 40 / 1480 * 100vw );
  }
  @media screen and (max-width: 750px){
    width: 40px;
    bottom: 10px;
    right: 10px;
  }
}

.recList {
  padding: 80px 20px 0;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  @media screen and (max-width: 750px){
    padding: 60px 12vw 0;
  }
}
.recList__item {
  width: calc((100% - 50px) / 3);
  border: 1px solid var(--text-color);
  padding: 20px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.recList__thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.recList__table {
  margin-top: 15px;
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
  th, td {
    border-bottom: 1px solid var(--text-color);
    padding: 6px 8px;
    text-align: left;
  }
  th {
    width: 30%;
    font-weight: bold;
  }
}
.recList__tags {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  li {
    border: 1px solid var(--text-color);
    padding: 4px 8px;
    font-size: 12px;
  }
}
.recList__btn {
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 190px;
  margin: 20px auto 0;
  a {
    border-radius: 50vh;
    position: relative;
    display: block;
    padding: 10px;
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    background-color: var(--blue);
    &:after {
      content: "";
      background: url(../img/arrow_right_white.png) no-repeat center / contain;
      width: 10px;
      aspect-ratio: 12 / 17;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 20px;
    }
  }
}

.recruit-single {
  padding-top: 72px;
}
.single {
  padding-top: 40px;
}
.single__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.single__title {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}
.single__tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  li {
    padding: 5px;
    font-size: 14px;
    border: 1px solid var(--text-color);
  }
}
.single__eyecatch {
  margin-top: 40px;
}
.single__content {
  margin-top: 40px;
}
.singleReq {
  padding-top: 120px;
  @media screen and (max-width: 750px){
    padding-top: 80px;
  }
}
.singleReq__table {
  margin-top: 30px;
  padding: 0 30px;
  border: 1px solid var(--text-color);
  table {
    width: 100%;
    th {
      width: 25%;
      text-align: left;
      border-top: 1px solid #bababa;
      padding: 20px 0;
      vertical-align: top;
      font-weight: bold;
      color: var(--blue);
      @media screen and (max-width: 750px){
        width: 100%;
        padding-bottom: 0;
      }
    }
    td {
      border-top: 1px solid #bababa;
      padding: 20px 0;
      @media screen and (max-width: 750px){
        border-style: none;
        padding-top: 12px;
      }
    }
    tr:first-child {
      th, td {
        border-top: none;
      }
    }
  }
}
@media screen and (max-width: 750px){
  .singleReq__table table,
  .singleReq__table table tr,
  .singleReq__table table th,
  .singleReq__table table td,
  .singleReq__table table tbody {
    display: block;
  }
}

.singleContact {
  padding-top: 120px;
  @media screen and (max-width: 750px){
    padding-top: 80px;
  }
}
.singleContact__table {
  margin-top: 30px;
  padding: 0 30px;
  border: 1px solid var(--text-color);
  table {
    width: 100%;
    th {
      width: 25%;
      text-align: left;
      border-top: 1px solid #bababa;
      padding: 20px 0;
      vertical-align: top;
      font-weight: bold;
      color: var(--blue);
      @media screen and (max-width: 750px){
        width: 100%;
        padding-bottom: 0;
      }
    }
    td {
      border-top: 1px solid #bababa;
      padding: 20px 0;
      @media screen and (max-width: 750px){
        border-top-style: none;
        padding-top: 12px;
      }
    }
    tr:first-child {
      th, td {
        border-top: none;
      }
    }
  }
}
@media screen and (max-width: 750px){
  .singleContact__table table,
  .singleContact__table table tr,
  .singleContact__table table th,
  .singleContact__table table td,
  .singleContact__table table tbody {
    display: block;
  }
}

.icon-required {
  color: var(--red);
  font-size: 60%;
  position: relative;
  top: -0.6em;
  right: -0.2em;
}
.form-text {
  width: 100%;
  height: 2.4em;
  padding: 0 0.5em;
}
.form-textarea {
  width: 100%;
  height: 8em;
  padding: 0.5em;
}
.singleContact__btn {
  text-align: center;
  margin-top: 40px;
}
.btn-submit {
  -webkit-appearance: none;
  border-style: none;
  border-radius: 50vh;
  width: 160px;
  padding: 12px 0;
  background-color: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  &:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}