@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #71626c;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.568627451vw;
  }
}
@media (min-width: 1020px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.footer {
  background-color: #f3f3f3;
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 13rem;
  }
}

.footer__inner {
  padding: 17px 0;
  padding: 1.0625rem 0;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
  row-gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__nav-list a {
  color: #474747;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-list a {
    font-size: 1rem;
  }
}

.footer__bottom {
  padding: 17px 0;
  padding: 1.0625rem 0;
  background-color: #474747;
  text-align: center;
}

.footer__bottom small {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.header {
  z-index: 100;
  position: absolute;
  top: 10px;
  left: 10px;
}

.header__logo {
  width: 174px;
  width: 10.875rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 11.25rem;
  }
}

.inner {
  width: 100%;
  padding-right: 14px;
  padding-left: 14px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1070px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.loading.is-hide {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
  pointer-events: none;
}

.loading__img {
  width: 300px;
  -webkit-animation: slideIn 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: slideIn 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.section-title {
  position: relative;
}

.section-title__icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12%;
  top: -76px;
  top: -4.75rem;
}

.section-title__ship {
  position: absolute;
  top: -12px;
  width: 45px;
  width: 2.8125rem;
  left: 44%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .section-title__ship {
    top: -82px;
    width: 4.0625rem;
  }
}

.section-title__ship.is-animated {
  -webkit-animation: 3s shipWaveSP both;
          animation: 3s shipWaveSP both;
}
@media screen and (min-width: 768px) {
  .section-title__ship.is-animated {
    -webkit-animation: 4s shipWaveMd both;
            animation: 4s shipWaveMd both;
  }
}
@media screen and (min-width: 1024px) {
  .section-title__ship.is-animated {
    -webkit-animation: 4s shipWave both;
            animation: 4s shipWave both;
  }
}

@-webkit-keyframes shipWave {
  0% {
    top: -4.5rem;
    left: 40%;
    opacity: 0;
  }
  15% {
    top: -5.125rem;
  }
  30% {
    top: -4.5rem;
    opacity: 1;
  }
  50% {
    top: -5.125rem;
  }
  70% {
    top: -4.5rem;
  }
  100% {
    top: -5.125rem;
    left: 50%;
  }
}

@keyframes shipWave {
  0% {
    top: -4.5rem;
    left: 40%;
    opacity: 0;
  }
  15% {
    top: -5.125rem;
  }
  30% {
    top: -4.5rem;
    opacity: 1;
  }
  50% {
    top: -5.125rem;
  }
  70% {
    top: -4.5rem;
  }
  100% {
    top: -5.125rem;
    left: 50%;
  }
}
@-webkit-keyframes shipWaveMd {
  0% {
    top: -5.125rem;
    left: 40%;
    opacity: 0;
  }
  15% {
    top: -5.75rem;
  }
  30% {
    top: -5.125rem;
    opacity: 1;
  }
  50% {
    top: -5.75rem;
  }
  70% {
    top: -5.125rem;
  }
  100% {
    top: -5.75rem;
    left: 50%;
  }
}
@keyframes shipWaveMd {
  0% {
    top: -5.125rem;
    left: 40%;
    opacity: 0;
  }
  15% {
    top: -5.75rem;
  }
  30% {
    top: -5.125rem;
    opacity: 1;
  }
  50% {
    top: -5.75rem;
  }
  70% {
    top: -5.125rem;
  }
  100% {
    top: -5.75rem;
    left: 50%;
  }
}
@-webkit-keyframes shipWaveSP {
  0% {
    top: -3.875rem;
    left: 35%;
    opacity: 0;
  }
  15% {
    top: -3.4375rem;
  }
  30% {
    top: -3.875rem;
    opacity: 1;
  }
  50% {
    top: -3.4375rem;
  }
  70% {
    top: -3.875rem;
  }
  100% {
    top: -3.4375rem;
    left: 50%;
  }
}
@keyframes shipWaveSP {
  0% {
    top: -3.875rem;
    left: 35%;
    opacity: 0;
  }
  15% {
    top: -3.4375rem;
  }
  30% {
    top: -3.875rem;
    opacity: 1;
  }
  50% {
    top: -3.4375rem;
  }
  70% {
    top: -3.875rem;
  }
  100% {
    top: -3.4375rem;
    left: 50%;
  }
}
.section-title__wave {
  position: absolute;
  top: -20px;
  width: 139px;
  width: 8.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .section-title__wave {
    top: -30px;
    width: 15.5625rem;
  }
}

.section-title__text {
  width: 200px;
  width: 12.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .section-title__text {
    width: 20.375rem;
  }
}

.section-title__text img {
  display: block;
  width: 100%;
  height: auto;
}

.fv {
  position: relative;
}

.fv__banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  max-width: 450px;
}
@media screen and (min-width: 768px) {
  .fv__banner {
    bottom: 35%;
    right: 0;
    z-index: 1;
    width: 10%;
    left: auto;
  }
}
@media screen and (min-width: 1440px) {
  .fv__banner {
    bottom: 28%;
  }
}

.fv__banner.fix-fadein {
  opacity: 1;
  visibility: visible;
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.bounce {
  -webkit-animation: bounce 1s ease forwards;
          animation: bounce 1s ease forwards;
}

.concept {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .concept {
    margin-top: 3.125rem;
  }
}

.concept__message {
  font-size: clamp(16px, 13.572px + 0.6472491909vw, 26px);
  font-size: clamp(1rem, 0.8483009709rem + 0.6472491909vw, 1.625rem);
  text-align: center;
  line-height: 1.88;
}

.concept__message:not(:first-child) {
  margin-top: 52px;
  margin-top: 3.25rem;
}

.concept__message .port {
  color: #65b0cc;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  opacity: 0;
}

.concept__message .face {
  color: #f29eae;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  opacity: 0;
}

.concept__message-add {
  color: #65b0cc;
  font-size: 30px;
  font-size: 1.875rem;
  font-size: clamp(20px, 17.572px + 0.6472491909vw, 30px);
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-weight: 500;
}

/*======================================
        flow
=======================================*/
.flow {
  margin-top: 160px;
  margin-top: 10rem;
}
@media screen and (min-width: 768px) {
  .flow {
    margin-top: 12.375rem;
  }
}

.flow__img {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  -webkit-animation: 2s down 1s;
          animation: 2s down 1s;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .flow__img {
    width: 79%;
    margin-inline: auto;
    margin-top: 3.625rem;
    padding-bottom: 7rem;
  }
}

@-webkit-keyframes down {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
  }
}

@keyframes down {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
.flow__list-wrap {
  background-color: #eeefef;
}

.flow__list-wrapInner {
  padding-top: 61px;
  padding-top: 3.8125rem;
  padding-bottom: 47px;
  padding-bottom: 2.9375rem;
}

.flow__content {
  border: 5px dotted #65b0cc;
  border: 0.3125rem dotted #65b0cc;
  border-radius: 10px;
  padding: 26px 20px;
  padding: 1.625rem 1.25rem;
  background-color: #fff;
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 82px;
  row-gap: 5.125rem;
}
@media screen and (min-width: 768px) {
  .flow__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10.3%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.flow__step {
  position: relative;
}

.flow__step-img {
  width: 30%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .flow__step-img {
    width: 57%;
  }
}

.flow__text-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .flow__text-wrap {
    margin-top: 0.4375rem;
  }
}

.flow__step p {
  font-size: clamp(16px, 15.514px + 0.1294498382vw, 18px);
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  margin-top: 2px;
  margin-top: 0.125rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .flow__step p {
    text-align: left;
    text-align: initial;
    display: block;
  }
}

.flow__step-title {
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  text-align: center;
  color: #f29eae;
  margin-top: 0.5em;
}

.flow__step:not(:last-child):after {
  content: "";
  left: 50%;
  bottom: -52px;
  bottom: -3.25rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  border-right: 20px solid transparent;
  border-right: 1.25rem solid transparent;
  border-left: 20px solid transparent;
  border-left: 1.25rem solid transparent;
  border-top: 30px solid #65b0cc;
  border-top: 1.875rem solid #65b0cc;
}
@media screen and (min-width: 768px) {
  .flow__step:not(:last-child):after {
    right: -59%;
    left: auto;
    top: 20%;
    bottom: auto;
    position: absolute;
    border-top: 1.25rem solid transparent;
    border-bottom: 1.25rem solid transparent;
    border-left: 1.875rem solid #65b0cc;
  }
}

@media screen and (min-width: 768px) {
  .flow__step.ferry .flow__step-img {
    width: 52%;
  }
}

.flow__step.ferry .flow__step-title {
  margin-top: 0;
  color: #65b0cc;
}

.flow__list-attention {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.09em;
}

.flow__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .flow__media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6%;
    margin-top: 3.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .flow__media-img {
    width: 50%;
  }
}

.flow__media-textBlock {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .flow__media-textBlock {
    width: 44%;
    margin-top: 0;
  }
}

.flow__media-text + .flow__media-text {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.flow__media-text p {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .flow__media-text p {
    font-size: 1.125rem;
    margin-top: 1.1875rem;
    letter-spacing: 0.14em;
  }
}

.flow__media-text span {
  background-color: #65b0cc;
  display: inline-block;
  color: #fff;
  border-radius: 8px;
  font-size: clamp(18px, 17.514px + 0.1294498382vw, 20px);
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  padding: 2px 32px;
  padding: 0.125rem 2rem;
}
@media screen and (min-width: 768px) {
  .flow__media-text span {
    padding: 0.25rem 2.6875rem;
  }
}

.flow__message {
  color: #65b0cc;
  font-size: clamp(22px, 20.058px + 0.5177993528vw, 30px);
  font-size: clamp(1.375rem, 1.2536407767rem + 0.5177993528vw, 1.875rem);
  letter-spacing: 0.14em;
  text-align: center;
  margin-top: 20px;
  margin-top: 2.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .flow__message {
    line-height: 1.5;
  }
}

.flow__voice-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 65px;
  padding-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .flow__voice-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 7.6875rem;
  }
}

.flow__voice-img {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .flow__voice-img {
    width: 42%;
  }
}

.flow__voice-wrap {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .flow__voice-wrap {
    width: 52%;
    margin-top: 0;
  }
}

.flow__voice-content {
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  border: 4px dotted #65b0cc;
  background-color: #f3f9fb;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .flow__voice-content {
    padding: 1.9375rem 2.5rem 1.9375rem 2.8125rem;
  }
}

.flow__voice-content + .flow__voice-content {
  margin-top: 33px;
  margin-top: 2.0625rem;
}

.flow__voice-message {
  color: #65b0cc;
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.flow__voice-text {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .flow__voice-text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    letter-spacing: 0.12em;
    line-height: 1.4;
  }
}

.flow__voice-name {
  font-size: 16px;
  font-size: 1rem;
  color: #f29eae;
  text-align: right;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .flow__voice-name {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    letter-spacing: 0.13em;
  }
}

/*======================================
              会社概要
=======================================*/
.company {
  margin-top: 140px;
  margin-top: 8.75rem;
  margin-top: 194px;
  margin-top: 12.125rem;
}

.company__title .section-title__text {
  width: 140px;
  width: 8.75rem;
}
@media screen and (min-width: 768px) {
  .company__title .section-title__text {
    width: 11.8125rem;
  }
}

.company-profile {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .company-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .company-profile__list-wrap {
    width: 100%;
  }
}

.company-profile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 7px;
  row-gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .company-profile__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 3.9375rem;
    gap: 0.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .company-profile__list.auto {
    height: auto;
  }
}

.company-profile__list + .company-profile__list {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.company-profile__term {
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  background-color: #73b2c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .company-profile__term {
    font-size: 1.25rem;
    max-width: 23.375rem;
    padding: 0;
  }
}

.company-profile__description {
  padding: 13px 19px 13px 19px;
  padding: 0.8125rem 1.1875rem 0.8125rem 1.1875rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .company-profile__description {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.company-profile__description li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .company-profile__description li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.company-profile__description li:not(:first-child) {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .company-profile__description li:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.company-profile__description li span:first-child {
  padding-right: 20px;
  padding-right: 1.25rem;
}

.company-profile__description li span:not(:first-child) {
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .company-profile__description li span:not(:first-child) {
    margin-top: 0;
  }
}

.news {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .news {
    margin-top: 10.5625rem;
  }
}

.news__inner {
  position: relative;
}

.news__title {
  color: #65b0cc;
  font-size: clamp(40px, 37.572px + 0.6472491909vw, 50px);
  font-size: clamp(2.5rem, 2.3483009709rem + 0.6472491909vw, 3.125rem);
  font-family: "M PLUS 1p", sans-serif;
  margin-top: 15px;
  margin-top: 0.9375rem;
  display: inline-block;
  background: #f3f3f3;
  padding: 5px 10px 0 14px;
  padding: 0.3125rem 0.625rem 0 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border-radius: 10px;
  position: absolute;
  top: -1.4em;
}
@media screen and (min-width: 768px) {
  .news__title {
    margin-top: 1.8125rem;
    padding: 0.3125rem 0.625rem 0 2rem;
  }
}

.news__list {
  margin-top: 32px;
  margin-top: 2rem;
  border: 14px solid #f3f3f3;
  border: 0.875rem solid #f3f3f3;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news__list {
    border: 2rem solid #f3f3f3;
    border-top: 2rem solid #f3f3f3;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.news-list__item {
  border-bottom: 3px dotted;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news-list__item {
    padding-bottom: 1.875rem;
  }
}

.news-list__item + .news-list__item {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .news-list__item + .news-list__item {
    margin-top: 0;
    padding-top: 1.25rem;
  }
}

.news-list__item {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
}
.news-list__item-date {
  font-family: "M PLUS 1p", sans-serif;
}

.news-list__item-title {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .news-list__item-title {
    font-size: 1.125rem;
    margin-top: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.news-list__item-text {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 21px;
  margin-top: 1.3125rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .news-list__item-text {
    font-size: 1.0625rem;
  }
}
/*# sourceMappingURL=styles.css.map */
