@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Murecho:wght@500&display=swap");
* {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.ate {
  color: #CE000F;
}

.img-01 {
  background: url(img/eye1.png);
  background-size: cover;
  animation: slide-animation-01 20s infinite;
}

.img-02 {
  background: url(img/eye2.png);
  background-size: cover;
  animation: slide-animation-02 20s infinite;
}

.img-03 {
  background: url(img/eye3.png);
  background-size: cover;
  animation: slide-animation-03 20s infinite;
}

@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.submit {
  text-align: center;
}

/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*--------------------------------------- max-width: 767px ----------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  header {
    background: #fff;
    border-top: 0.6rem solid #135BAA;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  header #headcontents {
    width: 90%;
    margin: 0 auto;
    padding: 0.5rem 0 1rem;
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  header #headcontents h1 {
    width: 70%;
  }
  header #headcontents .drawer {
    margin-top: 0.3rem;
  }
  header #headcontents .drawer-hidden {
    display: none;
  }
  header #headcontents .drawer-open {
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
  }
  header #headcontents .drawer-open span,
  header #headcontents .drawer-open span:before,
  header #headcontents .drawer-open span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  header #headcontents .drawer-open span:before {
    bottom: 8px;
  }
  header #headcontents .drawer-open span:after {
    top: 8px;
  }
  header #headcontents #drawer-check:checked ~ .drawer-open span {
    background: rgba(255, 255, 255, 0);
  }
  header #headcontents #drawer-check:checked ~ .drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  header #headcontents #drawer-check:checked ~ .drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  header #headcontents .drawer-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;
    z-index: 99;
    background: #fff;
    transition: 0.5s;
  }
  header #headcontents #drawer-check:checked ~ .drawer-content {
    left: 0;
  }
  header #headcontents nav {
    margin: 0 auto;
  }
  header #headcontents nav ul {
    margin: 5rem auto 0;
  }
  header #headcontents nav ul li {
    margin-bottom: 0.5rem;
  }
  header #headcontents nav ul li a {
    padding: 1rem 0;
    font-size: 1rem;
    display: block;
  }
  footer {
    margin-top: 2rem;
  }
  footer #foot-okigaru {
    background: #135BAA;
  }
  footer #foot-okigaru p {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1rem;
    color: #fff;
  }
  footer #foot-contents {
    width: 90%;
    margin: 2rem auto;
  }
  footer #foot-contents #foot-left h2 img {
    width: 100%;
  }
  footer #foot-contents #foot-left #foot-adress {
    margin-top: 1rem;
    font-size: 1rem;
  }
  footer #foot-contents #foot-left #foot-adress #izumo {
    margin-top: 0.6rem;
  }
  footer #foot-contents #foot-right {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer #foot-contents #foot-right p {
    width: 46%;
  }
  #contactcontents {
    background: #135BAA;
    width: 90%;
    margin: 2rem auto;
    padding: 0.5rem 0;
    border-radius: 0.3rem;
  }
  #contactcontents h2 {
    text-align: center;
    font-size: 1.1rem;
    color: #135BAA;
  }
  #contactcontents #contactcontentsin {
    background: #fff;
    width: 96%;
    margin: 0 auto;
    padding: 1rem 0;
    border-radius: 0.2rem;
  }
  #contactcontents #contactcontentsin #contact-box {
    width: 90%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-around;
  }
  #contactcontents #contactcontentsin #contact-box p {
    width: 26%;
  }
  .blinking {
    animation: blink 1s ease-in-out infinite alternate;
  }
  @keyframes blink {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /* --------------------------------------------------*/
  /* ---------------------- index ---------------------*/
  /* --------------------------------------------------*/
  #index-title {
    text-align: center;
  }
  #index-title p {
    font-family: "Murecho", sans-serif;
    font-size: 1rem;
  }
  #index-title h2 {
    font-family: "Murecho", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    color: #135BAA;
    position: relative;
  }
  #index-title h2:before {
    position: absolute;
    bottom: -1rem;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: "";
    border-radius: 3px;
    background: #FFE100;
  }
  #index-title h3 {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: normal;
  }
  .img-frame {
    position: relative;
    width: 98%;
    height: 360px;
    overflow: hidden;
    -webkit-clip-path: inset(0 round 0 1rem 1rem 0);
            clip-path: inset(0 round 0 1rem 1rem 0);
    top: -1rem;
  }
  .img-01, .img-02, .img-03 {
    position: absolute;
    width: 100%;
    height: 360px;
    left: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #index-top {
    width: 90%;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-top #index-eyecatch {
    width: 90%;
    height: 350px;
    background: #135BAA;
    border-radius: 0 1rem 1rem 0;
    position: relative;
  }
  #index-top #index-top-r {
    background: #fff;
    width: 77%;
    padding: 1.2rem;
    position: absolute;
    right: 0;
    border-radius: 1rem;
  }
  #index-service {
    background: #e6f4ff;
    margin-top: 3rem;
    padding: 2rem 0;
  }
  #index-service #index-service-contents-img {
    width: 80%;
    margin: 3rem auto 0;
  }
  #index-service #index-service-container::after {
    content: "";
    display: block;
    width: 32%;
  }
  #index-service #index-service-container {
    width: 88%;
    margin: 3rem auto 0;
  }
  #index-service #index-service-container .index-service-box-top {
    margin-bottom: 2%;
  }
  #index-service #index-service-container .index-service-box-top h2 {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 0.4rem 0;
    color: #135BAA;
    font-weight: bold;
    text-align: center;
    border-radius: 0.4rem;
    font-size: 1.2rem;
  }
  #index-service #index-service-container .index-service-box-contents {
    width: 90%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-service #index-service-container .index-service-box {
    background: #135BAA;
    background-size: 90%;
    padding: 1rem 0;
    border-radius: 0.4rem;
  }
  #index-service #index-service-container .index-service-left {
    width: 70%;
  }
  #index-service #index-service-container .index-service-left p {
    font-size: 0.8rem;
    color: #fff;
  }
  #index-service #index-service-container .index-service-left2 p {
    color: #fff;
  }
  #index-service #index-service-container .index-service-right {
    width: 25%;
  }
  #index-works {
    margin: 2rem auto 0;
  }
  #index-works #index-works-contents {
    width: 90%;
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #index-works #index-works-contents .index-works-box {
    width: 48%;
    margin-bottom: 3rem;
    border: 0.1rem solid #eee;
    box-shadow: 0.5rem 0.5rem 0.4rem #ccc;
  }
  #index-works #index-works-contents .index-works-box a {
    display: block;
  }
  #index-works #index-works-contents .index-works-box h2 {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: normal;
    text-align: center;
  }
  #index-works #index-works-contents .index-works-box p {
    width: 88%;
    margin: 1rem auto;
    font-size: 1rem;
  }
  #index-company {
    background: #e6f4ff;
    padding: 4rem 0;
  }
  #index-company table {
    margin: 6rem auto 0;
  }
  #index-company table th, #index-company table td {
    padding: 1rem;
    font-size: 1.1rem;
  }
  #index-company table th {
    vertical-align: top;
    text-align: right;
  }
  #inex-contact {
    margin-top: 5rem;
  }
  #inex-contact table {
    width: 95%;
    margin: 3rem auto 0;
  }
  #inex-contact table th, #inex-contact table td {
    display: block;
    text-align: left;
  }
  #inex-contact table th {
    vertical-align: top;
  }
  #inex-contact table td {
    padding-bottom: 1rem;
  }
  /* --------------------------------------------------*/
  /* ----------------------- page ---------------------*/
  /* --------------------------------------------------*/
  #page {
    width: 90%;
    margin: 0 auto;
    margin-top: 1rem;
  }
  #page .page-contents {
    margin-top: 4rem;
  }
  #page p {
    line-height: 1.7;
  }
  table {
    margin: 0 auto;
  }
  /* --------------------------------------------------*/
  /* --------------------- business -------------------*/
  /* --------------------------------------------------*/
  #business-top #business-image {
    margin: 0 auto;
  }
  #business-top #business-image img {
    width: 100%;
  }
  #business-top #business-discri {
    margin-top: 1rem;
  }
  #business-top #business-discri p {
    font-size: 1rem;
  }
  .business-image2 {
    margin-top: 3rem;
  }
  #haiki {
    margin-top: 1rem;
    font-size: 1rem;
  }
  /* --------------------------------------------------*/
  /* ---------------------- company -------------------*/
  /* --------------------------------------------------*/
  #company #company-image {
    margin: 0 auto;
  }
  #company #company-image img {
    width: 100%;
  }
  #company #company-discri {
    margin-top: 1rem;
  }
  #company #company-discri p {
    line-height: 1.7;
  }
  #company #company-discri .message-ce {
    margin-top: 1rem;
    text-align: right;
  }
  #company-history table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
  }
  #company-history table th, #company-history table td {
    padding: 0.6rem 0;
    border: 0.1rem solid #000;
    font-weight: normal;
    font-size: 1rem;
  }
  #company-history table th {
    width: 30%;
  }
  #company-history table td {
    padding-left: 1rem;
  }
  /* --------------------------------------------------*/
  /* ---------------------- single --------------------*/
  /* --------------------------------------------------*/
  #single {
    margin: 4rem auto 6rem;
  }
  #single #single-title {
    text-align: center;
  }
  #single #single-title p {
    font-family: "Murecho", sans-serif;
    font-size: 1.2rem;
  }
  #single #single-title h2 {
    width: 90%;
    font-family: "Murecho", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
    color: #135BAA;
    text-align: center;
    position: relative;
  }
  #single #single-title h2:before {
    position: absolute;
    bottom: -1.6rem;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: "";
    border-radius: 3px;
    background: #FFE100;
  }
  #single #single-title h3 {
    margin-top: 3rem;
    font-size: 1.4rem;
  }
  #single #single-contents {
    width: 90%;
    margin: 0 auto;
    margin: 3rem auto 0;
    font-size: 1rem;
  }
  #single #single-contents img {
    width: 100%;
    margin: 1rem auto;
  }
}
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*--------------------------------------- max-width: 1279px ---------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .sp {
    display: none;
  }
  header {
    background: #fff;
    border-top: 0.6rem solid #135BAA;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  header #headcontents {
    width: 90%;
    margin: 0 auto;
    padding: 1.4rem 0 1rem;
    align-items: center;
  }
  header #headcontents h1 {
    width: 50%;
    margin-top: 1rem;
  }
  header #headcontents .drawer {
    width: 90%;
    margin-top: 2rem;
  }
  header #headcontents .drawer ul {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  header #headcontents .drawer ul li a {
    text-decoration: none;
    font-size: 1.2rem;
  }
  footer {
    margin-top: 5rem;
  }
  footer #foot-okigaru {
    background: #135BAA;
  }
  footer #foot-okigaru p {
    padding: 1rem 0;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1rem;
    color: #fff;
  }
  footer #foot-contents {
    width: 90%;
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer #foot-contents #foot-left {
    width: 40%;
  }
  footer #foot-contents #foot-left h2 img {
    width: 100%;
  }
  footer #foot-contents #foot-left #foot-adress {
    margin-top: 1rem;
    font-size: 1.1rem;
  }
  footer #foot-contents #foot-right {
    width: 40%;
  }
  footer #foot-contents #foot-right p {
    margin-bottom: 2rem;
  }
  #contactcontents {
    background: #135BAA;
    width: 80%;
    margin: 4rem auto;
    padding: 1rem 0;
    border-radius: 0.3rem;
  }
  #contactcontents h2 {
    text-align: center;
    font-size: 1.6rem;
    color: #135BAA;
  }
  #contactcontents #contactcontentsin {
    background: #fff;
    width: 96%;
    margin: 0 auto;
    padding: 1.6rem 0;
    border-radius: 0.2rem;
  }
  #contactcontents #contactcontentsin #contact-box {
    width: 90%;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-around;
  }
  #contactcontents #contactcontentsin #contact-box p {
    width: 26%;
  }
  .blinking {
    animation: blink 1s ease-in-out infinite alternate;
  }
  @keyframes blink {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /* --------------------------------------------------*/
  /* ---------------------- index ---------------------*/
  /* --------------------------------------------------*/
  #index-title {
    text-align: center;
  }
  #index-title p {
    font-family: "Murecho", sans-serif;
    font-size: 1.4rem;
  }
  #index-title h2 {
    font-family: "Murecho", sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    color: #135BAA;
    position: relative;
  }
  #index-title h2:before {
    position: absolute;
    bottom: -1.6rem;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: "";
    border-radius: 3px;
    background: #FFE100;
  }
  #index-title h3 {
    margin-top: 3rem;
    font-size: 1.1rem;
  }
  .img-frame {
    position: relative;
    width: 98%;
    height: 600px;
    overflow: hidden;
    -webkit-clip-path: inset(0 round 0 1rem 1rem 0);
            clip-path: inset(0 round 0 1rem 1rem 0);
    top: -1rem;
  }
  .img-01, .img-02, .img-03 {
    position: absolute;
    width: 100%;
    height: 600px;
    left: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #index-top {
    width: 90%;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-top #index-eyecatch {
    width: 80%;
    height: 596px;
    background: #135BAA;
    border-radius: 0 1rem 1rem 0;
    position: relative;
  }
  #index-top #index-top-r {
    background: #fff;
    width: 70%;
    padding: 3rem;
    position: absolute;
    right: 0;
    border-radius: 1rem;
  }
  #index-service {
    background: #e6f4ff;
    margin-top: 3rem;
    padding: 4rem 0;
  }
  #index-service #index-service-contents-img {
    width: 80%;
    margin: 3rem auto 0;
  }
  #index-service #index-service-container::after {
    content: "";
    display: block;
    width: 32%;
  }
  #index-service #index-service-container {
    width: 88%;
    margin: 3rem auto 0;
  }
  #index-service #index-service-container .index-service-box-top {
    margin-bottom: 2%;
  }
  #index-service #index-service-container .index-service-box-top h2 {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 0.6rem 0;
    color: #135BAA;
    font-weight: bold;
    text-align: center;
    border-radius: 0.4rem;
  }
  #index-service #index-service-container .index-service-box-contents {
    width: 90%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-service #index-service-container .index-service-box {
    background: #135BAA;
    background-size: 90%;
    padding: 1rem 0;
    border-radius: 0.4rem;
  }
  #index-service #index-service-container .index-service-left {
    width: 75%;
  }
  #index-service #index-service-container .index-service-left p {
    color: #fff;
  }
  #index-service #index-service-container .index-service-left2 p {
    color: #fff;
  }
  #index-service #index-service-container .index-service-right {
    width: 20%;
  }
  #index-works {
    margin: 5rem auto 0;
  }
  #index-works #index-works-contents {
    width: 80%;
    margin: 4rem auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #index-works #index-works-contents .index-works-box {
    width: 48%;
    margin-bottom: 3rem;
    border: 0.1rem solid #eee;
    box-shadow: 0.5rem 0.5rem 0.4rem #ccc;
  }
  #index-works #index-works-contents .index-works-box a {
    display: block;
  }
  #index-works #index-works-contents .index-works-box h2 {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: normal;
    text-align: center;
  }
  #index-works #index-works-contents .index-works-box p {
    width: 88%;
    margin: 1rem auto;
    font-size: 1rem;
  }
  #index-company {
    background: #e6f4ff;
    padding: 4rem 0;
  }
  #index-company table {
    margin: 6rem auto 0;
  }
  #index-company table th, #index-company table td {
    padding: 1rem;
    font-size: 1.1rem;
  }
  #index-company table th {
    vertical-align: top;
    text-align: right;
  }
  #inex-contact {
    margin-top: 5rem;
  }
  #inex-contact table {
    margin: 3rem auto 0;
  }
  #inex-contact table th, #inex-contact table td {
    padding: 1rem;
    font-size: 1.3rem;
  }
  #inex-contact table th {
    vertical-align: top;
    text-align: right;
  }
  /* --------------------------------------------------*/
  /* ----------------------- page ---------------------*/
  /* --------------------------------------------------*/
  #page {
    width: 90%;
    margin: 0 auto;
    margin-top: 4rem;
  }
  #page .page-contents {
    margin-top: 4rem;
  }
  #page p {
    line-height: 1.7;
    font-size: 1.2rem;
  }
  table {
    margin: 0 auto;
  }
  /* --------------------------------------------------*/
  /* --------------------- business -------------------*/
  /* --------------------------------------------------*/
  #business-top #business-image {
    margin: 0 auto;
  }
  #business-top #business-image img {
    width: 100%;
  }
  #business-top #business-discri {
    margin-top: 1rem;
  }
  .business-image2 {
    margin-top: 3rem;
  }
  /* --------------------------------------------------*/
  /* ---------------------- company -------------------*/
  /* --------------------------------------------------*/
  #company #company-image {
    margin: 0 auto;
  }
  #company #company-image img {
    width: 100%;
  }
  #company #company-discri {
    margin-top: 1rem;
  }
  #company #company-discri p {
    line-height: 1.7;
  }
  #company #company-discri .message-ce {
    margin-top: 1rem;
    text-align: right;
  }
  #company-history table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
  }
  #company-history table th, #company-history table td {
    padding: 0.6rem 0;
    border: 0.1rem solid #000;
    font-weight: normal;
    font-size: 1.2rem;
  }
  #company-history table th {
    width: 30%;
  }
  #company-history table td {
    padding-left: 1rem;
  }
  /* --------------------------------------------------*/
  /* ---------------------- single --------------------*/
  /* --------------------------------------------------*/
  #single {
    margin: 4rem auto 6rem;
  }
  #single #single-title {
    text-align: center;
  }
  #single #single-title p {
    font-family: "Murecho", sans-serif;
    font-size: 1.4rem;
  }
  #single #single-title h2 {
    font-family: "Murecho", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    color: #135BAA;
    position: relative;
  }
  #single #single-title h2:before {
    position: absolute;
    bottom: -1.6rem;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: "";
    border-radius: 3px;
    background: #FFE100;
  }
  #single #single-title h3 {
    margin-top: 3rem;
    font-size: 1.4rem;
  }
  #single #single-contents {
    width: 90%;
    margin: 0 auto;
    margin: 3rem auto 0;
    font-size: 1.2rem;
  }
  #single #single-contents img {
    width: 70%;
    margin: 1rem auto;
    display: block;
  }
}
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*--------------------------------------- min-width: 1281px ---------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 1280px) {
  .sp {
    display: none;
  }
  header {
    background: #fff;
    border-top: 0.6rem solid #135BAA;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  header #headcontents {
    width: 80%;
    margin: 0 auto;
    padding: 1.4rem 0 1rem;
    display: flex;
    justify-content: space-between;
  }
  header #headcontents h1 {
    width: 30%;
  }
  header #headcontents .drawer {
    width: 40%;
  }
  header #headcontents .drawer ul {
    display: flex;
    justify-content: space-between;
  }
  header #headcontents .drawer ul li a {
    text-decoration: none;
    font-size: 1.1rem;
  }
  footer {
    margin-top: 5rem;
  }
  footer #foot-okigaru {
    background: #135BAA;
  }
  footer #foot-okigaru p {
    padding: 1.3rem 0;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1rem;
    color: #fff;
  }
  footer #foot-contents {
    width: 50%;
    margin: 4rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer #foot-contents #foot-left {
    width: 56%;
  }
  footer #foot-contents #foot-left h2 img {
    width: 100%;
  }
  footer #foot-contents #foot-left #foot-adress {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
  }
  footer #foot-contents #foot-right {
    width: 36%;
  }
  footer #foot-contents #foot-right p {
    margin-bottom: 2rem;
  }
  #contactcontents {
    background: #135BAA;
    width: 50%;
    margin: 4rem auto;
    padding: 1rem 0;
    border-radius: 0.3rem;
  }
  #contactcontents h2 {
    text-align: center;
    font-size: 2rem;
    color: #135BAA;
  }
  #contactcontents #contactcontentsin {
    background: #fff;
    width: 96%;
    margin: 0 auto;
    padding: 1.6rem 0;
    border-radius: 0.2rem;
  }
  #contactcontents #contactcontentsin #contact-box {
    width: 80%;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-around;
  }
  #contactcontents #contactcontentsin #contact-box p {
    width: 24%;
  }
  .blinking {
    animation: blink 1s ease-in-out infinite alternate;
  }
  @keyframes blink {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /* --------------------------------------------------*/
  /* ---------------------- index ---------------------*/
  /* --------------------------------------------------*/
  #index-title {
    text-align: center;
  }
  #index-title p {
    font-family: "Murecho", sans-serif;
    font-size: 1.4rem;
  }
  #index-title h2 {
    font-family: "Murecho", sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    color: #135BAA;
    position: relative;
  }
  #index-title h2:before {
    position: absolute;
    bottom: -1.6rem;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: "";
    border-radius: 3px;
    background: #FFE100;
  }
  #index-title h3 {
    margin-top: 3rem;
    font-size: 1.1rem;
  }
  .img-frame {
    position: relative;
    width: 98%;
    height: 900px;
    overflow: hidden;
    -webkit-clip-path: inset(0 round 0 1rem 1rem 0);
            clip-path: inset(0 round 0 1rem 1rem 0);
    top: -1rem;
  }
  .img-01, .img-02, .img-03 {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #index-top {
    width: 90%;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-top #index-eyecatch {
    width: 80%;
    background: #135BAA;
    border-radius: 0 1rem 1rem 0;
    position: relative;
  }
  #index-top #index-top-r {
    background: #fff;
    width: 50%;
    padding: 3rem;
    position: absolute;
    right: 0;
    border-radius: 1rem;
  }
  #index-service {
    background: #e6f4ff;
    margin-top: 5rem;
    padding: 4rem 0;
  }
  #index-service #index-service-contents-img {
    width: 60%;
    margin: 6rem auto 0;
  }
  #index-service #index-service-container::after {
    content: "";
    display: block;
    width: 32%;
  }
  #index-service #index-service-container {
    width: 70%;
    margin: 3rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #index-service #index-service-container .index-service-box-top {
    width: 32%;
    margin-bottom: 2%;
  }
  #index-service #index-service-container .index-service-box-top h2 {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 0.6rem 0;
    color: #135BAA;
    font-weight: bold;
    text-align: center;
    border-radius: 0.4rem;
  }
  #index-service #index-service-container .index-service-box-contents {
    width: 90%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-service #index-service-container .index-service-box {
    background: #135BAA;
    background-size: 90%;
    padding: 1rem 0;
    border-radius: 0.4rem;
  }
  #index-service #index-service-container .index-service-left {
    width: 65%;
  }
  #index-service #index-service-container .index-service-left p {
    color: #fff;
  }
  #index-service #index-service-container .index-service-left2 p {
    color: #fff;
  }
  #index-service #index-service-container .index-service-right {
    width: 34%;
  }
  #index-works {
    margin: 5rem auto 0;
  }
  #index-works #index-works-contents {
    width: 70%;
    margin: 4rem auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #index-works #index-works-contents .index-works-box {
    width: 23%;
    margin-bottom: 3rem;
    border: 0.1rem solid #eee;
    box-shadow: 0.5rem 0.5rem 0.4rem #ccc;
  }
  #index-works #index-works-contents .index-works-box a {
    display: block;
  }
  #index-works #index-works-contents .index-works-box h2 {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: normal;
    text-align: center;
  }
  #index-works #index-works-contents .index-works-box p {
    width: 88%;
    margin: 1rem auto;
    font-size: 1rem;
  }
  #index-company {
    background: #e6f4ff;
    padding: 4rem 0;
  }
  #index-company table {
    margin: 6rem auto 0;
  }
  #index-company table th, #index-company table td {
    padding: 1rem;
    font-size: 1.1rem;
  }
  #index-company table th {
    vertical-align: top;
    text-align: right;
  }
  #inex-contact {
    margin-top: 5rem;
  }
  #inex-contact table {
    margin: 6rem auto 0;
  }
  #inex-contact table th, #inex-contact table td {
    padding: 1rem;
    font-size: 1.1rem;
  }
  #inex-contact table th {
    vertical-align: top;
    text-align: right;
  }
  /* --------------------------------------------------*/
  /* ----------------------- page ---------------------*/
  /* --------------------------------------------------*/
  #page {
    width: 70%;
    margin: 0 auto;
    margin-top: 4rem;
  }
  #page .page-contents {
    margin-top: 4rem;
  }
  table {
    margin: 0 auto;
  }
  /* --------------------------------------------------*/
  /* --------------------- business -------------------*/
  /* --------------------------------------------------*/
  #business-top #business-image {
    margin: 0 auto;
  }
  #business-top #business-image img {
    width: 100%;
  }
  #business-top #business-discri {
    margin-top: 1rem;
  }
  #business-top #business-discri p {
    line-height: 1.7;
  }
  /* --------------------------------------------------*/
  /* ---------------------- company -------------------*/
  /* --------------------------------------------------*/
  #company #company-image {
    margin: 0 auto;
  }
  #company #company-image img {
    width: 100%;
  }
  #company #company-discri {
    margin-top: 1rem;
  }
  #company #company-discri p {
    line-height: 1.7;
  }
  #company #company-discri .message-ce {
    margin-top: 1rem;
    text-align: right;
  }
  #company-history table {
    margin-top: 2rem;
    border-collapse: collapse;
  }
  #company-history table th, #company-history table td {
    padding: 0.4rem 1.5rem;
    border: 0.1rem solid #000;
    font-weight: normal;
  }
  /* --------------------------------------------------*/
  /* ---------------------- single --------------------*/
  /* --------------------------------------------------*/
  #single {
    width: 70%;
    margin: 4rem auto 6rem;
  }
  #single #single-title {
    text-align: center;
  }
  #single #single-title p {
    font-family: "Murecho", sans-serif;
    font-size: 1.4rem;
  }
  #single #single-title h2 {
    font-family: "Murecho", sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
    color: #135BAA;
    position: relative;
  }
  #single #single-title h2:before {
    position: absolute;
    bottom: -1.6rem;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: "";
    border-radius: 3px;
    background: #FFE100;
  }
  #single #single-title h3 {
    margin-top: 3rem;
  }
  #single #single-contents {
    width: 70%;
    margin: 3rem auto 0;
  }
  #single #single-contents img {
    margin: 1rem auto;
    display: block;
  }
}/*# sourceMappingURL=style.css.map */