@charset "UTF-8";

/*共通*/
:root {
  --text-color-01: #000;
  --text-color-02: #333;
  --primary-color-01: #0083b1;
  --bg-color-01: #7b8282;
  --bg-color-02: #444;
  --bg-color-03: #e6e6e6;
  --grade-color-01: linear-gradient(137deg, #deefea, #80cacf);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  height: 100%;
  font-size: 17px;
  color: var(--text-color-01);
  letter-spacing: 0.13rem;
}
main {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: var(--text-color-03);
}
a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
ul {
  padding: 0;
}
li {
  list-style: none;
}
h1 {
  font-size: 2rem;
  font-weight: 600;
}
.en {
  font-family: "FuturaLTPro-BoldCondObl";
  letter-spacing: 0.3rem;
  font-size: 2.6rem;
}
.midashi {
  font-family: "丸明オールド StdN R";
}
.fonttype02 {
  font-family: "Zen Maru Gothic", serif;
}
.container {
  margin-inline: auto;
  max-width: 1100px;
  padding: 0 2vw;
}
.container02 {
  margin-inline: auto;
  max-width: 990px;
}

/*header*/
.header {
  position: fixed;
  z-index: 10;
  background-color: #fff;
  width: 100%;
}
.header.fixed {
  top: 0;
  display: none;
}
.header-wrapper {
  display: flex;
  max-width: 1100px;
  margin-inline: auto;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 0 0;
}
.header-logo {
  width: 13%;
}
.pcmenu-wrapper {
  padding: 0 1vw;

  & ul {
    display: flex;
    gap: 2vw;
  }
  & a {
    color: var(--text-color-02);
    font-size: 0.9rem;
  }
}

/*main*/
.go-btn {
  background-color: var(--primary-color-01);
  color: #fff;
  padding: 1vw 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  gap: 5px;
  width: fit-content;

  &::after {
    content: "";
    background: no-repeat url(../img/icon-arrow.svg);
    display: block;
    width: 20px;
    aspect-ratio: 1;
    background-position: 100%;
  }
}

.top-image {
  position: relative;

  & video {
    width: 100%;
    height: auto;
    display: block;
  }
  & h1 {
    position: absolute;
    color: #fff;
    z-index: 5;
    bottom: 22%;
    left: 10%;
    font-size: 3rem;
    font-style: italic;
  }
}

.go-story {
  background-image: linear-gradient(#cccccc 82%, #878787);

  .container {
    display: flex;
    padding: 1vw;
    justify-content: end;
    align-items: center;
    gap: 2vw;
  }
  & p {
    margin: 0;
  }
}

#top-mission {
  background-color: var(--text-color-02);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 1vw;
}
.mission-text {
  max-width: 50%;
  margin-left: 5%;
  padding: 70px 0;

  & h2 {
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    font-size: 2.6rem;
    margin: 0;
    letter-spacing: 0.3rem;
  }
  & p {
    line-height: 2.6rem;
    font-size: 1.1rem;
  }
}
.mission-tape {
  margin: 2vw 0;

  & p {
    margin: 10px 0;
    background-color: #fff;
    color: var(--text-color-02);
    width: fit-content;
    font-size: 1.8rem;
    padding: 0 12px;
  }
}
.go-mission {
  margin: 3vw 5vw 0 0;

  .go-btn {
    margin-left: auto;
  }
}
.topmission-img {
  max-width: 600px;

  & img {
    display: block;
    height: 100%;
  }
}

#top-business {
  text-align: center;
}
.biz-inner {
  position: relative;
  padding: 4vw 0;

  &::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: var(--primary-color-01);
    top: 0;
    left: 5%;
  }
  &::after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: var(--primary-color-01);
    top: 0;
    right: 5%;
  }
}
.biz-container01 {
  border-top: 1px solid var(--primary-color-01);
  padding: 1vw 0;
}
.biz-container01:has(.biz-container02) {
  border-bottom: 1px solid var(--primary-color-01);
}
.biz-subttl {
  padding: 0 5%;
}
.biz-container02 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 5%;

  &::after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: var(--primary-color-01);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}
.biz-item {
  padding: 2vw;
  width: 80%;
  margin-inline: auto;

  & h3 {
    font-size: 1.6rem;
    margin-bottom: 3vw;
    font-weight: 500;
  }
  & p {
    text-align: justify;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  .go-btn {
    margin: 2vw auto 0;
  }
}

#top-story {
  background-color: var(--bg-color-01);
  color: #fff;
  padding: 50px 0 100px;

  & h2 {
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    margin: 0 0 5px;
    font-size: 2.6rem;
  }
  .topstory-subttl {
    font-size: 0.9rem;
    margin: 0;
  }
  .go-btn {
    margin-left: auto;
  }
}
.top-story-text {
  background-color: var(--bg-color-02);
  padding: 2vw 0;
  margin: 2vw 0;

  & h3 {
    font-size: 1.5rem;
    line-height: 2.6rem;
    margin: 1vw 0 2.3vw 0;
  }
  & p {
    /*width: 70%;*/
    line-break: anywhere;
  }
}

#top-contact {
  padding: 100px 0 50px;
  margin-bottom: 50px;

  & h2 {
    font-size: 2.6rem;
  }
  & p {
    font-size: 1.3rem;
  }
  .go-btn {
    background-color: var(--text-color-02);
    margin: 3vw auto;
  }
}
.topcontact-container {
  max-width: 990px;
  margin-inline: auto;
  border: 1px solid var(--primary-color-01);
  text-align: center;
  padding: 2vw 5vw 3vw;
  box-sizing: border-box;
}

/*footer*/
.footer-top {
  border-top: 1px solid #0083b1;
  padding: 3vw 0 0;
  margin: 0 1vw;

  & img {
    width: 20%;
  }
}
.footer-container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5vw;

  & ul {
    display: flex;
    gap: 2vw;
  }
  & a {
    color: var(--text-color-02);
  }
}
.footer-address {
  font-size: 0.8rem;

  & span {
    font-size: 1.1rem;
  }
  & p {
    margin: 0;
  }
  .tel-no {
    margin-top: 1vw;
  }
}
.footer-bg img {
  display: block;
}

/*下層ページ共通*/
.content-page {
  padding: 150px 0 0;
}
.content-ttl {
  margin: 1vw auto 3vw;

  & h1 {
    font-size: 3rem;
    margin: 0;
    padding-bottom: 5px;
    line-height: 2.8rem;
  }
  & p {
    color: var(--primary-color-01);
    margin: 0;
  }
}
.contenttop-text {
  padding: 50px 2vw 150px;
  line-break: anywhere;

  & h3 {
    color: var(--primary-color-01);
    font-size: 1.7rem;
    font-weight: 500;
  }
}
.sec-ttl {
  & h2 {
    letter-spacing: 0.1rem;
    margin: 5px auto 0;
    line-height: 2rem;
    font-size: 2.6rem;
  }
  & p {
    color: var(--primary-color-01);
    margin: 4px 0;
  }
}

/*会社案内*/
.company-menu {
  border-top: 1px solid var(--primary-color-01);
  border-bottom: 1px solid var(--primary-color-01);
  display: flex;
  justify-content: center;
  gap: 1vw;
  align-items: center;
  padding: 2vw 0;

  & a {
    display: flex;
    align-items: center;
    gap: 1vw;
    padding: 0 2vw;

    &::after {
      content: "";
      background: no-repeat url(../img/icon-arrow_u.svg);
      background-position: center;
      width: 10px;
      aspect-ratio: 1;
    }
  }
  & a:nth-child(2) {
    border-left: 1px solid;
    border-right: 1px solid;
  }
}
#policy {
  background: no-repeat url(../img/pict-argonavt.jpg);
  padding: 100px 0;
  background-size: 120%;
  background-position: -25% 170%;
}
.policy-container {
  display: flex;
  gap: 10%;

  & ul {
    margin: 0;
  }
  & li {
    margin: 0 0 5vw;
    display: flex;
    gap: 1vw;

    & p:nth-child(1) {
      color: var(--primary-color-01);
      margin: 0;
      font-size: 1.6rem;
      font-family: "FuturaLTPro-BoldCondObl";
    }
  }
  & h4 {
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 0;
    font-weight: 600;
  }
}
#message {
  background-color: var(--bg-color-03);
  padding: 100px 0;
}
.message-container {
  display: flex;
  margin-top: 3vw;
  gap: 5%;

  & p {
    margin-top: 0;
  }
  & img {
    width: 20%;
    height: 100%;
  }
}
.message-name {
  margin-top: 3vw;
  font-size: 0.9rem;

  & span {
    font-size: 1.1rem;
    margin-left: 1vw;
  }
}

#profile {
  padding: 120px 0;
}
.profile-container {
  display: flex;
  gap: 10%;

  & ul {
    margin: 0;
  }
  & li {
    border-bottom: 1px solid #ccc;
    display: grid;
    grid-template-columns: 30% 70%;
    padding: 1vw;
  }
  & li:nth-child(1) {
    padding-top: 0;
  }
}

/*ストーリー*/
#story {
  padding-bottom: 0;
}
#episode {
  border-top: 1px solid var(--primary-color-01);

  & h2 {
    text-align: center;
  }
}
.episode-menu {
  display: flex;
  justify-content: center;
  margin: 3vw auto;

  & a {
    display: flex;
    align-items: center;
    gap: 1vw;
    padding: 0 2vw;

    &::after {
      content: "";
      background: no-repeat url(../img/icon-arrow_u.svg);
      background-position: center;
      width: 10px;
      aspect-ratio: 1;
    }
  }
}
.story-container {
  padding-top: 100px;

  & picture {
    width: 100%;
    height: 100%;
    display: block;
  }
  & img {
    display: block;
  }
  & h3 {
    font-size: 2rem;
  }
}
.story-ttl {
  background-color: #fff;
  width: fit-content;
  padding: 10px 35px 10px 10%;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);

  & p {
    margin: 0;
    font-size: 1.3rem;
  }
}
.story-text {
  padding: 0 0 60px 0;
  margin: 0 10%;

  & p {
    margin: 2vw 0;
    text-align: justify;
  }
}
#epi-01,
#epi-03 {
  background-image: var(--grade-color-01);
}
#epi-02 {
  padding: 150px 0 0px 0;

  .story-ttl {
    background-color: var(--primary-color-01);
    color: #fff;
    width: fit-content;
    padding: 10px 35px 10px 10%;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  }
}
.story-bottom {
  background: no-repeat url(../img/pict-argonavt.jpg);
  background-position: 115% 125%;
  background-size: 60%;
  padding: 60px 0 400px;

  & p {
    color: var(--primary-color-01);
    font-size: 1.8rem;
    line-height: 3rem;
  }
}

/*貿易事業・サービス事業*/
.tbsb-top {
  position: relative;
  padding-bottom: 150px;
}
.tbsb-topcontainer {
  padding: 1vw 2vw;

  & h3 {
    color: var(--primary-color-01);
    font-size: 1.7rem;
    font-weight: 500;
    max-width: 87%;
  }
  & p {
    max-width: 60%;
  }
}
.tbsb-topimg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  max-width: 500px;
}
.tbsb-container {
  padding-bottom: 100px;
}
.tbsb-secttl {
  border-top: 1px solid var(--primary-color-01);
  /*border-bottom: 2px solid var(--primary-color-01);*/
  padding: 2vw 0;
  margin: 0 auto;

  & h3 {
    margin: 0;
    padding-top: 5px;
    line-height: 2rem;
    font-size: 2.1rem;
  }
  & span {
    color: var(--primary-color-01);
    margin: 0;
    display: block;
  }
  & p {
    margin: 0;
  }
  .container {
    display: flex;
    gap: 2vw;
  }
}
.tb-secttl {
  background-color: #f0fbff;
}
.sb-secttl {
  background-color: #f0fff6;
  margin-bottom: 150px;
}
.sb-container {
  display: grid;
  grid-template-columns: 25% 40% auto;
  gap: 2vw;
  margin-inline: auto;
  max-width: 1100px;
  padding: 0 2vw;

  & img {
    border-radius: 10px;
  }
}
.tb-content {
  padding: 65px 2vw 155px;

  .ttl-p {
    margin: 0 auto 3vw;
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
  }
  & ul {
    display: grid;
    gap: 10%;
    grid-template-columns: 1fr 1fr;
  }
  & img {
    border-radius: 10px;
  }
}

/*お問合せ*/
#contact-top {
  border-bottom: 1px solid var(--primary-color-01);
}
.contact-content {
  text-align: center;
  padding: 60px 0 150px;

  & h4 {
    margin: 0;
    font-size: 1.5rem;
  }
}
.contact-wrapper {
  background-color: var(--bg-color-03);
  padding: 2vw 0;
  margin-bottom: 4vw;

  & span {
    font-weight: 500;
    display: block;
  }
}
.contact-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  font-size: 1.6rem;

  & img {
    width: 3%;
  }
}
.contact-group {
  display: flex;
  gap: 5%;
  margin-top: 8vw;

  & iframe {
    width: 500px;
    height: 300px;
  }
}
.contact-address {
  text-align: left;
}

/*SPサイズ*/
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
    letter-spacing: 0.05rem;
  }
  .pc {
    display: none;
  }
  .no-scroll {
    overflow: hidden;
  }
  .header-wrapper {
    padding: 4vw 5vw 3vw;
  }
  .header-logo {
    width: 25%;
    z-index: 90;
  }
  .menu-btn {
    position: relative;
    position: -webkit-fixed;
    width: 9vw;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    z-index: 90;
    margin-left: 5vw;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: "";
    display: block;
    height: 0.4vw;
    width: 2rem;
    right: 0;
    border-radius: 0.9vw;
    background-color: #0a3199;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 0.6rem;
    width: 2rem;
  }
  .menu-btn span:after {
    top: 0.6rem;
    width: 2rem;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #menu-btn-check {
    display: none;
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 0;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 100%;
    top: 0;
    z-index: 80;
    background-color: #e6e6e6;
    transition: all 0.5s;
  }
  .spmenu-wrapper {
    width: 90%;
    padding-top: 25%;
    margin-inline: auto;

    & li {
      border-bottom: 1px solid var(--primary-color-01);
      padding: 4vh 3vw 2vw;
      font-size: 1.2rem;
    }
  }

  .container02 {
    padding: 0 5%;
  }
  .top-image {
    height: 35vh;
    padding-top: 7vh;

    & video {
      height: 100%;
      object-fit: cover;
      object-position: 60%;
    }
    & h1 {
      bottom: 10%;
      left: 5%;
      font-size: 1.6rem;
    }
  }
  .go-story {
    padding: 5vw;

    & p {
      font-size: 0.8rem;
    }
    .container {
      display: block;
      text-align: center;
    }
    .go-btn {
      padding: 2vw 5vw;
      margin: 1vw auto;
      font-size: 1rem;
      letter-spacing: 0.1rem;
    }
  }
  #top-mission {
    flex-direction: column;
    padding: 6vh 0 0;

    & img {
      display: block;
    }
  }
  .mission-text {
    max-width: 90%;
    margin: 0 auto 5vh;
    padding: 0;

    & p {
      line-height: 1.6rem;
      font-size: 0.8rem;
    }
  }
  .mission-tape {
    margin: 3vh 0;

    & p {
      font-size: 1rem;
    }
  }
  .go-mission {
    margin: 8vw 0 0;

    .go-btn {
      padding: 2vw 4vw;
      gap: 3vw;
    }
  }

  .biz-inner {
    padding: 7vw 0;
  }
  .biz-container01 {
    padding: 2vw 0 8vw;

    & h2 {
      margin-bottom: 1vw;
    }
  }
  .biz-subttl {
    padding: 0 8%;
    width: fit-content;
    font-size: 0.8rem;
    text-align: center;
    margin-inline: auto;
  }
  .biz-container02 {
    grid-template-columns: auto;
    grid-template-rows: 1fr 1fr;

    &::after {
      height: 1px;
      width: 100%;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
    }
  }
  .biz-item {
    padding: 2vw 0 5vw;
    width: 85%;

    & h3 {
      font-size: 1.5rem;
      margin-bottom: 6vw;
    }
    .go-btn {
      margin: 5vw auto 0;
      padding: 2vw 5vw;
      gap: 3vw;
    }
  }
  #top-story {
    padding: 5vh 0;

    .topstory-subttl {
      font-size: 0.7rem;
    }
    .go-btn {
      padding: 2vw 4vw;
    }
  }
  .top-story-text {
    padding: 3vh 0;
    margin: 2vh 0 3vh;

    & h3 {
      font-size: 1.4rem;
      line-height: 2.1rem;
    }
    & p {
      width: 100%;
    }
  }
  #top-contact {
    padding: 7vh 0;

    & h2 {
      margin-bottom: 1vw;
    }
    & p {
      font-size: 0.8rem;
      line-height: 1.3rem;
    }
    .go-btn {
      margin: 3.5vh auto 4vh;
      padding: 2vw 5vw;
    }
  }
  .topcontact-container {
    width: 90%;
  }

  .footer-container {
    display: block;
    padding: 0 0 5vh;

    & ul {
      border-top: 1px solid #0083b1;
      flex-wrap: wrap;
      gap: 5vw;
      justify-content: space-around;
      padding-top: 4vh;
      max-width: 90%;
      margin-inline: auto;
      margin-top: 0;
    }
  }
  .footer-bg {
    position: relative;
  }
  .footer-address {
    position: absolute;
    bottom: 10%;
    left: 5%;

    & span {
      font-size: 0.8rem;
      display: block;
      margin: 2vw 0;
    }
    & p {
      font-size: 0.5rem;
    }
  }
  .footer-logo {
    width: 40%;
  }

  /*下層ページ*/
  .content-page {
    padding: 13vh 0 0;
  }
  .content-ttl {
    width: 90%;
    margin: 1vw auto 3vh;
  }
  .contenttop-img {
    height: 25vh;

    & img {
      width: auto;
      height: 100%;
    }
  }
  .contenttop-text {
    padding: 7vw 2vw 8vh;
    width: 90%;
    font-size: 0.9rem;
    line-height: 1.4rem;

    & h3 {
      font-size: 1.35rem;
      line-height: 2rem;
    }
  }
  .company-menu {
    padding: 7vw 0;
  }
  #policy {
    background-position: -40% 106%;
    background-size: 120%;
  }
  .policy-container {
    display: block;
    width: 90%;

    & li {
      margin: 0 0 5vh;
    }
    & h4 {
      font-size: 1.25rem;
    }
  }
  .sec-ttl {
    margin-bottom: 6vh;
  }
  #message {
    padding: 10vh 0;

    .sec-ttl {
      width: 90%;
    }
    .container {
      width: 90%;
    }
  }
  .message-container {
    flex-direction: column-reverse;

    & img {
      width: 50%;
      display: block;
      margin: 1vw auto 3vh;
    }
    & p {
      letter-spacing: 0.07rem;
    }
  }
  #profile {
    padding: 10vh 0;
    margin-bottom: 12vh;
  }
  .profile-container {
    display: block;
    width: 90%;

    & p {
      font-size: 0.9rem;
    }
  }
  .episode-menu {
    margin: 4vh auto;
  }
  .story-container {
    padding-top: 15vw;

    & h3 {
      font-size: 1.6rem;
    }
    .container {
      width: 90%;
    }
  }
  #epi-02 {
    padding: 15vw 0 0vw 0;

    .story-ttl {
      padding: 2vw 7vw 2vw 6%;
    }
  }
  .story-ttl {
    padding: 2vw 7vw 2vw 6%;

    & p {
      font-size: 1rem;
    }
  }
  .story-text {
    padding: 0 0 6vw 0;
    margin: 0 6%;

    & p {
      margin: 6vw 0;
    }
  }
  .story-bottom {
    background-position: 156% 126%;
    background-size: 83%;
    padding: 4vh 0 17vh;

    & p {
      font-size: 1.4rem;
      width: 90%;
      margin-inline: auto;
      line-height: 180%;
    }
  }

  .tbsb-top {
    padding-bottom: 10vh;
  }
  .tbsb-topcontainer {
    display: grid;
    padding: 1vw 4vw;

    & h3 {
      font-size: 1.3rem;
      order: 1;
    }
    & p {
      max-width: 100%;
      order: 3;
      text-align: justify;
    }
  }
  .tbsb-container {
    padding-bottom: 5vh;
  }
  .tbsb-topimg {
    position: unset;
    order: 2;
    transform: translateY(0%);
    width: 100%;
    margin: 1vh 0;
  }
  .tbsb-secttl {
    border-bottom: unset;
    padding: 0;

    .container {
      flex-direction: column;
      padding: 0;
    }
    .secttl {
      /*border-bottom: 2px solid var(--primary-color-01);*/
      padding: 4vw;
    }
    & p {
      padding: 3vw 4vw;
    }
  }
  .tb-secttl {
    background-color: unset;

    .secttl {
      background-color: #f0fbff;
    }
  }
  .sb-secttl {
    background-color: unset;
    margin-bottom: 13vh;

    .secttl {
      background-color: #f0fff6;
    }
  }
  .tb-content {
    margin: 5vh auto 17vh;
    padding: 0 2vw;

    .ttl-p {
      font-size: 1.3rem;
    }
    & ul {
      display: block;
      width: 95%;
      margin-inline: auto;
    }
    & li {
      margin: 3vh auto 6vh;
    }
  }
  .sb-container {
    display: flex;
    flex-direction: column;
    padding: 0 0 3vh;
    gap: 2vh;

    & img {
      width: 90%;
      margin-inline: auto;
    }
  }
  #contact-top {
    .contenttop-text {
      padding: 1vw 2vw 5vh;
    }
  }
  .contact-content {
    padding: 6vw 0 10vh;
    width: 90%;
    margin-inline: auto;

    & h4 {
      margin: 2vw 0;
      font-size: 1.4rem;
    }
  }
  .contact-wrapper {
    padding: 3vw 0;
    margin-bottom: 5vh;

    & p {
      font-size: 0.8rem;
      line-height: 1.3rem;
    }
  }
  .contact-text {
    gap: 2vw;
    font-size: 1rem;

    & img {
      width: 4%;
    }
  }
  .contact-group {
    flex-direction: column;

    & iframe {
      width: 100%;
      height: 30vh;
    }
  }
  .contact-address {
    margin: 3vh 0 0;

    & p {
      line-height: 1.5rem;
      margin: 0;
    }
  }
}

/*PCサイズ*/
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  body {
    font-size: 16px;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* タブレット */
@media screen and (min-width: 767px) and (max-width: 1280px) {
}
