﻿@charset "UTF-8";
/* ########### 合同会社TSUNAGE-TECH ########### */

/*
 * "font-awesome" is lisenced under the SIL Open Font License 1.1
 * https://fortawesome.github.io/Font-Awesome
 * http://scripts.sil.org/OFL
 */

/*
 * "Noto Serif JP" is lisenced under the SIL Open Font License 1.1
 * http://fonts.googleapis.com
 * https://www.google.com/fonts/attribution
 * http://scripts.sil.org/OFL
 */

/*
 * "Noto Sans JP" is lisenced under the SIL Open Font License 1.1
 * http://fonts.googleapis.com
 * https://www.google.com/fonts/attribution
 * http://scripts.sil.org/OFL
 */

/*
 * "Oswald" is lisenced under the SIL Open Font License 1.1
 * http://fonts.googleapis.com
 * https://www.google.com/fonts/attribution
 * http://scripts.sil.org/OFL
 */

/*
 * "Roboto" is lisenced under the Apache License, version 2.0
 * http://fonts.googleapis.com
 * https://www.google.com/fonts/attribution
 * http://www.apache.org/licenses/LICENSE-2.0.html
 */

/* Copyright (c) 2021 合同会社TSUNAGE-TECH
 Released under the MIT license
 https://opensource.org/licenses/mit-license.php */

/* ################## 共通 ################## */

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
label, td, th, p, div, dd, dt, li, a, input, textarea, select {
  color: rgb(125, 124, 125);
}

input, select, textarea {
  outline: none;
  border: 1px solid rgb(125, 124, 125);
}

button, optgroup, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sousin {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", "Helvetica Neue", "Arial", "verdana", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

html {
  line-height: 1.5;
  text-align: justify;
}

ul, li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  /* image-rendering: -webkit-optimize-contrast; */
}

.nowrap {
  white-space: nowrap;
}

.hidden {
  overflow: hidden;
}

.flip-horizontal {
  transform: scale(-1, 1);
}

.utikesi {
  text-decoration: line-through;
}

.back-white {
  background-color: rgb(255, 255, 255);
}

.back-lightgreen {
  background-color: rgb(226, 245, 245);
}

.back-green {
  background-color: rgb(0, 173, 169);
}

.back-gray {
  background-color: rgb(125, 124, 125);
}

.back-lightgray {
  background-color: rgb(235, 235, 235);
}

.white {
  color: white;
}

.green {
  color: rgb(0, 173, 169);
}

.gray {
  color: rgb(125, 124, 125);
}

.border-bottom1 {
  line-height: 1.5;
  padding-bottom: 1px;
  border-bottom: 1px solid rgb(125, 124, 125);
}

.line-height1 {
  line-height: 1;
}

.line-height125 {
  line-height: 1.25;
}

.line-height15 {
  line-height: 1.5;
}

.line-height175 {
  line-height: 1.75;
}

.line-height2 {
  line-height: 2;
}

.margin-top1 {
  margin-top: 1em;
}

.margin-top2 {
  margin-top: 2em;
}

.margin-bottom1 {
  margin-bottom: 1em;
}

.big {
  font-size: 120%;
}

.big-140 {
  font-size: 140%;
}

.normal {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

.bigbold {
  font-weight: bold;
  font-size: 115%;
}

.bigbold-140 {
  font-weight: bold;
  font-size: 140%;
}

.small {
  font-size: 80%;
}

.asterisk {
  font-size: 70%;
  vertical-align: 5px;
}

.middle {
  vertical-align: middle;
}

.initial {
  text-align: initial;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.fontsize0 {
  font-size: 0;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.text-indent1 {
  padding-left: 1em;
  text-indent: -1em;
}

.text-indent2 {
  padding-left: 2em;
  text-indent: -2em;
}

.margin-auto {
  margin: 0 auto;
}

.text-narrow {
  transform: scale(0.8, 1);
}

.letterspacing-m05 {
  letter-spacing: -0.5px;
}

.letterspacing-m1 {
  letter-spacing: -1px;
}

/*TOPPAGE Animation css */

.slider_fade>li {
  width: 100%;
  position: absolute;
  list-style: none;
  visibility: hidden;
  animation: anime_slider_fade 12s 0s infinite;
}

.slider_fade>li:nth-of-type(2) {
  animation-delay: 4s;
}

.slider_fade>li:nth-of-type(3) {
  animation-delay: 8s;
}

@keyframes backgroundUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}

@keyframes anime_slider_fade {
  0% {
    visibility: visible;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
  }
  48.3% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Animation Three */

.three span {
  color: rgb(255, 255, 255);
  opacity: 0;
  transform: translate(-300px, 0) scale(0);
  animation: sideSlide 1.5s forwards;
}

@keyframes sideSlide {
  60% {
    transform: translate(20px, 0) scale(1);
    color: rgb(255, 255, 255);
  }
  80% {
    transform: translate(20px, 0) scale(1);
    color: rgb(255, 255, 255);
  }
  99% {
    transform: translate(0) scale(1.2);
    color: rgb(255, 255, 255);
  }
  100% {
    transform: translate(0) scale(1);
    opacity: 1;
    color: rgb(255, 255, 255);
  }
}

/* ugoki*/
.ugoki.effect-scroll {
  opacity: 0;
  animation: RightToLeft 1.75s forwards;
}

@keyframes RightToLeft {
  0% {
    opacity: 0;
    transform: translateX(650px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Animation subanime*/

.subanime span {
  opacity: 0;
  animation: opa 2.75s forwards;
}

.subanime2 span.effect-scroll {
  opacity: 0;
  animation: opa 2.75s forwards;
}

@keyframes opa {
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Animation mainanime */

.mainanime span {
  opacity: 0;
  animation: leftRight2 0.75s forwards;
}

.mainanime2 span.effect-scroll {
  opacity: 0;
  animation: leftRight2 0.75s forwards;
}

@keyframes leftRight2 {
  from {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effect-fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}

.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.animate span {
  display: inline-block;
}

.animate span:nth-of-type(2) {
  animation-delay: .1s;
}

.animate span:nth-of-type(3) {
  animation-delay: .2s;
}

.animate span:nth-of-type(4) {
  animation-delay: .3s;
}

.animate span:nth-of-type(5) {
  animation-delay: .4s;
}

.animate span:nth-of-type(6) {
  animation-delay: .5s;
}

.animate span:nth-of-type(7) {
  animation-delay: .6s;
}

.animate span:nth-of-type(8) {
  animation-delay: .7s;
}

.animate span:nth-of-type(9) {
  animation-delay: .8s;
}

.animate span:nth-of-type(10) {
  animation-delay: .9s;
}

.animate span:nth-of-type(11) {
  animation-delay: 1s;
}

.animate span:nth-of-type(12) {
  animation-delay: 1.1s;
}

/* ################## 各ブロック ################## */

/* ### TOPへ ### */

#topbtn:hover {
  background: rgb(0, 173, 169);
  color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
  user-select: none;
}

#topbtn:hover .topbtn__text {
  color: rgb(255, 255, 255);
}

/* ###### フッター ####### */

footer {
  background-color: rgb(0, 173, 169);
}

.footer__copy {
  background-color: rgb(125, 124, 125);
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
  font-weight: normal;
  padding: 7px 5px;
  font-size: 13px;
  text-align: center;
}

/* ###### table ###### */

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

/* ###### NEWSLIST ####### */

#newslist {
  min-height: 365px;
}

#newspage {
  min-height: 365px;
}

/* ########### Wordpress用 ########### */
.headerspace+h2{
  display:none;
}
/* ################################################## 479px以下 ################################################## */

@media (max-width: 479px) {
  .sf {
    display: block !important;
  }
  .tb {
    display: none !important;
  }
  .tbsfinline {
    display: inline !important;
  }
  .tbsf {
    display: block !important;
  }
  .pcinline {
    display: none !important;
  }
  .pctb {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .contents0 {
    padding: 0px 15px;
  }
  .contents {
    padding: 30px 15px;
  }
  .contents2 {
    padding: 20px 15px;
  }
  .h2nowrap {
    white-space: nowrap;
  }
  p, dd, td, input {
    line-height: 1.5;
    font-size: 14px;
  }
  /* ### TOPへ ### */
  #topbtn {
    margin-right: 15px;
    text-align: right;
  }
  #topbtn {
    position: fixed;
    right: 0;
    bottom: 42px;
    padding: 0 0 0 0;
    border-radius: 5px;
    width: 33px;
    height: 33px;
    background: rgb(255, 255, 255);
    text-align: center;
    text-decoration: none;
    color: rgb(0, 173, 169);
    border: 2px solid rgb(0, 173, 169);
    font-size: 14px;
    z-index: 1005;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .topbtn__text {
    margin-top: -7px;
    color: rgb(0, 173, 169);
    font-size: 11px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #topbtn:active {
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 2px;
  }
  /* ###### ヘッダー ####### */
  header {
    z-index: 1003;
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: fixed;
    height: 85px;
    -webkit-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
  }
  .headerspace {
    height: 85px;
  }
  #service,#profile,#contact,#company {
     display: block;
     padding-top: 85px;
     margin-top: -85px;
 }
  .header__copy {
    background-color: rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    letter-spacing: 3px;
    font-weight: normal;
    padding: 4px 6px;
    font-size: 13px;
    height: 25px;
    text-align: center;
    width: 100%;
  }
  .header {
    height: 50px;
  }
  .header__logo {
    margin: 15px 0 8px;
    width: 245px;
  }
  #navibtn span {
    display: inline-block;
    text-indent: -9999px;
  }
  #navibtn i {
    color: rgb(0, 173, 169);
    font-size: 18px;
  }
  #navibtn {
    padding: 2px 5px;
    border: solid 2px rgb(0, 173, 169);
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 42px;
    right: 15px;
    cursor: pointer;
  }
  #navibtn:hover {
    background-color: rgb(0, 173, 169);
  }
  #navibtn:hover i {
    color: rgb(255, 255, 255);
    font-size: 18px;
  }
  #navibtn:focus {
    outline: none;
  }
  .header__nav {
    margin-top: 60px;
    display: none;
    text-align: right;
  }
  .header__nav li {
    display: block;
  }
  .header__nav li a {
    font-size: 15px;
    margin: 0;
    padding: 15px 5px 15px 30px;
    display: block;
    text-align: left;
    background-color: rgb(255, 255, 255);
    border-top: solid 2px rgb(0, 173, 169);
    border-left: solid 2px rgb(0, 173, 169);
    border-right: solid 2px rgb(0, 173, 169);
    color: rgb(0, 173, 169);
    text-decoration: none;
    font-weight: bold;
  }
  .header__nav li:last-child a {
    border-bottom: solid 2px rgb(0, 173, 169);
  }
  .header__nav li a:hover {
    background-color: rgb(0, 173, 169);
    color: white;
  }
  /* ###### トップページ メイン ###### */
  .slider_fade {
    position: relative;
  }
  .main {
    position: relative;
  }
  .slide-img img {
    width: 100%;
    min-height: 347px;
    max-height: 347px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .main__block-text {
    font-weight: bold;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1
  }
  .main__subtitle {
    font-size: 25px;
    color: white;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
  }
  .main__subtitle img {
    width: 25px;
    display: inline-block;
    vertical-align: -3px;
    margin: 0 5px;
  }
  .main__title {
    font-size: 0;
    white-space: nowrap;
    margin: 15px 0;
    padding: 0;
  }
  .main__title img {
    display: inline-block;
    max-height: 27px;
  }
  .main__text {
    letter-spacing: 1.5px;
    font-size: 16px;
    line-height: 1.35;
    color: white;
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
  }
  /* ###### NEWS ####### */
  .h2title {
    letter-spacing: 1px;
    font-size: 28px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
  }
  .h2subtitle {
    margin: 7px 0;
    font-size: 14px;
    font-weight: bold;
  }
  .button-outer input {
    display: inline-block;
    margin: 10px 0 10px 0;
    padding: 4px 15px 6px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    outline: none;
    font-weight: bold;
    background-color: rgb(0, 173, 169);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    transition: all .5s ease 0s;
  }
  .button-outer input:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(0, 173, 169);
  }
  .button a {
    display: block;
    margin: 10px 0 10px 0;
    padding: 4px 15px 6px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    outline: none;
    font-weight: bold;
    background-color: rgb(0, 173, 169);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    transition: all .5s ease 0s;
  }
  .button a:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(0, 173, 169);
  }
  .button-outer {
    margin-right: auto;
    margin-left: auto;
    max-width: 100px;
  }
  .article__post-date {
    display: inline-block;
    margin: 10px 0 0 0;
    font-weight: bold;
    font-size: 14px;
    color: rgb(0, 173, 169);
  }
  .article__post {
    line-height: 1.25;
    padding: 0 0 5px;
    font-size: 14px;
    margin: 0px 0 10px 0;
  }
  .article__post a {
    margin: 3px 0 0 0;
    text-align: initial;
  }
  /* ###### SERVICE ####### */
  .h3title {
    white-space: nowrap;
    font-size: 17px;
    font-weight: bold;
    margin: 15px 0;
  }
  .h3title2 {
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: bold;
    margin: 15px 0 40px;
    line-height: 1.5;
  }
  .h3subtitle {
    font-size: 12.5px;
  }
  .h3title3 {
    font-size: 19px;
    font-weight: bold;
    margin: 10px 0 10px 0;
    line-height: 2;
    border-top: 3px solid rgb(255, 255, 255);
  }
  .service__blocktop {
    background-color: white;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .service__blockbottom {
    margin-top: 20px;
  }
  .service__blockbottom-photo {
    margin-top: 15px;
    width: 100%;
  }
  .service__blockbottom-photo .tbsf img {
    width: 100%;
  }
  .service__blockbottom-text {
    background-color: rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    padding: 15px;
    text-align: left;
  }
  /* ###### COMPANY ####### */
  .company__blocktop {
    position: relative;
  }
  .company__blocktop-photo img {
    width: 100%;
    min-height: 135px;
    max-height: 135px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .company__blocktop-text {
    font-weight: bold;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1
  }
  .company__blockmiddle {
    margin-top: 10px;
  }
  .company__blockmiddle-photo {
    margin-top: 15px;
    width: 100%;
  }
  .company__blockmiddle-photo .tbsf img {
    width: 100%;
  }
  .company__blockmiddle-text {
    background-color: rgb(125, 124, 125);
    color: rgb(255, 255, 255);
    padding: 15px;
    text-align: left;
  }
  .company__blockmiddle-text .text {
    line-height: 1.75;
    font-weight: 500;
  }
  .table1 {
    margin: 35px 0px 15px;
    width: 100%;
  }
  .table1 th {
    padding: 16px 0px 14px;
  }
  .table1 td {
    padding: 15px 0px;
  }
  .table1__left {
    text-align: left;
    width: 65px;
    color: rgb(0, 173, 169);
    font-size: 14px;
    font-weight: bold;
    border-top: rgb(125, 124, 125) 1px solid;
    border-bottom: rgb(125, 124, 125) 1px solid;
    letter-spacing: -0.25px;
  }
  .table1__right {
    width: 100%;
    text-align: left;
    color: rgb(125, 124, 125);
    font-size: 14px;
    font-weight: bold;
    border-top: rgb(125, 124, 125) 1px solid;
    border-bottom: rgb(125, 124, 125) 1px solid;
    letter-spacing: -0.3px;
  }
  /* ###### PROFILE ####### */
  .profile__block {
    margin-top: 35px;
  }
  .profile__block-photo {
    margin: 0 auto;
    width: 140px;
  }
  .profile__block-text {
    font-size: 14px;
    line-height: 1.45;
    width: 100%;
  }
  .sigaki {
    text-align: center;
  }
  /* ###### CONTACT ###### */
  .contact__blocktop {
    padding: 30px 0px;
  }
  .contact__blockleft {
    padding: 15px 15px 20px;
  }
  .contact__blockright {
    width: 100%
  }
  .contact__blockright {
    position: relative;
  }
  .contact__blockright-photo img {
    width: 100%;
    min-height: 250px;
    max-height: 250px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .contact__blockright-text {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1001;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
  }
  .contact__blockright-text .subanime2 span {
    color: rgb(255, 255, 255);
  }
  .contact__blockright-text img {
    width: 240px;
    margin-top: 10px;
  }
  .contacttable {
    width: 100%;
  }
  .contacttable th {
    padding: 15px 0px 10px;
  }
  .contacttable td {
    padding: 0px;
  }
  .contacttable__left {
    display: block;
    text-align: left;
    width: 100%;
    color: rgb(125, 124, 125);
    font-size: 14px;
  }
  .contacttable__left label {
    color: rgb(125, 124, 125);
  }
  .contacttable__right {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
  }
  .contacttable__right input {
    font-size: 14px;
    width: 100%;
    height: 33px;
    padding: 7px 8px 9px;
    border: rgb(125, 124, 125) 0px solid;
    background-color: rgb(226, 245, 245);
  }
  .contacttable__right textarea {
    font-size: 14px;
    padding: 8px;
    width: 100%;
    height: 80px;
    border: rgb(125, 124, 125) 0px solid;
    background-color: rgb(226, 245, 245);
  }
  ::placeholder {
    color: rgba(0, 173, 169, 0.5);
    font-size: 13px;
  }
  .contacttable__right .select-wrap select {
    color: rgb(125, 124, 125);
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    height: 33px;
    padding: 8px 30px 8px 8px;
    border: rgb(125, 124, 125) 0px solid;
    background-color: rgb(226, 245, 245);
  }
  .contacttable__right .select-wrap select option {
    color: rgb(125, 124, 125);
    font-weight: 600;
  }
  select {
    position: relative;
    padding: 10px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .select-wrap {
    position: relative;
  }
  .select-wrap:after {
    content: "";
    position: absolute;
    right: 15px;
    top: 14px;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgb(0, 173, 169);
    border-left: 2px solid rgb(0, 173, 169);
    transform: translateY(-50%) rotate( -135deg);
    font-size: 18px;
    pointer-events: none;
  }
  .hitusu {
    margin-left: 10px;
    border-radius: 4px;
    padding: 0px 5px 2px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 173, 169);
    font-size: 12px;
  }
  .radiocheck {
    width: 50px;
  }
  .radio-input {
    font-size: 14px;
    line-height: 1.75;
    padding: 5px 20px 0 0;
  }
  .radiotext {
    padding: 0 15px 0 0;
  }
  .douitext input {
    vertical-align: -1px;
  }
  .douitext {
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    margin: 15px 0 10px;
    font-size: 13px;
  }
  .infobox {
    margin: 5px 0 15px;
    padding: 10px;
    height: 125px;
    overflow: scroll;
    border: rgb(125, 124, 125) 1px solid;
    background-color: rgb(255, 255, 255);
    text-align: left;
    text-align: justify;
  }
  .policytitle {
    color: rgb(0, 173, 169);
    font-weight: bold;
    font-size: 14px;
    padding: 15px 0;
  }
  .policytext {
    line-height: 1.75;
    font-size: 13px;
    text-align: left;
  }
  .contact__title {
    font-size: 0;
    white-space: nowrap;
    padding: 0;
  }
  .contact__title img {
    display: inline-block;
    height: 25px;
    width: auto;
  }
  /* ###### フッター ####### */
  .footer__logo {
    padding-top: 20px;
    margin: 0 auto 0px;
    width: 250px
  }
  .footer__text {
    white-space: nowrap;
    padding-left: 37px;
    padding-top: 5px;
    padding-bottom: 20px;
    margin: 0 auto;
    width: 240px;
    color: rgb(255, 255, 255);
    line-height: 1.75;
    font-size: 13px;
  }
}

/* ################################################## 480px以上767px以下 ################################################## */

@media (min-width: 480px) and (max-width: 767px) {
  .sf {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  .tbsfinline {
    display: inline !important;
  }
  .tbsf {
    display: block !important;
  }
  .pcinline {
    display: none !important;
  }
  .pctb {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .contents0 {
    padding: 0px 30px;
  }
  .contents {
    padding: 30px 30px;
  }
  .contents2 {
    padding: 20px 30px;
  }
  p, dd, td, input {
    line-height: 1.5;
    font-size: 15px;
  }
  /* ### TOPへ ### */
  #topbtn {
    margin-right: 30px;
    text-align: right;
  }
  #topbtn {
    position: fixed;
    right: 0;
    bottom: 45px;
    padding: 1px 0 0 0;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    background: rgb(255, 255, 255);
    text-align: center;
    text-decoration: none;
    color: rgb(0, 173, 169);
    border: 2px solid rgb(0, 173, 169);
    font-size: 19px;
    z-index: 1005;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .topbtn__text {
    margin-top: -7px;
    color: rgb(0, 173, 169);
    font-size: 11px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #topbtn:active {
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 2px;
  }
  /* ###### ヘッダー ###### */
  header {
    z-index: 1003;
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: fixed;
    height: 100px;
    -webkit-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
  }
  .headerspace {
    height: 100px;
  }
  #service,#profile,#contact,#company {
     display: block;
     padding-top: 100px;
     margin-top: -100px;
 }
  .header__copy {
    background-color: rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    letter-spacing: 3px;
    font-weight: normal;
    padding: 4px 6px;
    font-size: 15px;
    height: 30px;
    text-align: center;
    width: 100%;
  }
  .header {
    height: 80px;
  }
  .header__logo {
    margin: 15px auto 8px;
    width: 300px;
  }
  #navibtn span {
    display: inline-block;
    text-indent: -9999px;
  }
  #navibtn i {
    color: rgb(0, 173, 169);
    font-size: 18px;
  }
  #navibtn {
    padding: 6px 8px;
    border: solid 2px rgb(0, 173, 169);
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 47px;
    right: 30px;
    cursor: pointer;
  }
  #navibtn:hover {
    background-color: rgb(0, 173, 169);
  }
  #navibtn:hover i {
    color: rgb(255, 255, 255);
    font-size: 18px;
  }
  #navibtn:focus {
    outline: none;
  }
  .header__nav {
    margin-top: 45px;
    display: none;
    text-align: right;
  }
  .header__nav li {
    display: block;
  }
  .header__nav li a {
    font-size: 16px;
    margin: 0;
    padding: 15px 5px 15px 30px;
    display: block;
    text-align: left;
    background-color: rgb(255, 255, 255);
    border-top: solid 2px rgb(0, 173, 169);
    border-left: solid 2px rgb(0, 173, 169);
    border-right: solid 2px rgb(0, 173, 169);
    color: rgb(0, 173, 169);
    text-decoration: none;
    font-weight: bold;
  }
  .header__nav li:last-child a {
    border-bottom: solid 2px rgb(0, 173, 169);
  }
  .header__nav li a:hover {
    background-color: rgb(0, 173, 169);
    color: white;
  }
  /* ###### トップページ メイン ###### */
  .slider_fade {
    position: relative;
  }
  .main {
    position: relative;
  }
  .slide-img img {
    width: 100%;
    min-height: 347px;
    max-height: 347px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .main__block-text {
    font-weight: bold;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1
  }
  .main__subtitle {
    font-size: 30px;
    color: white;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
  }
  .main__subtitle img {
    width: 30px;
    display: inline-block;
    vertical-align: -3px;
    margin: 0 5px;
  }
  .main__title {
    font-size: 0;
    white-space: nowrap;
    margin: 25px 0 25px 0;
    padding: 0;
  }
  .main__title img {
    display: inline-block;
    height: 40px;
  }
  .main__text {
    letter-spacing: 1.5px;
    font-size: 20px;
    line-height: 1.35;
    color: white;
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
  }
  /* ###### NEWS ####### */
  .h2title {
    letter-spacing: 1px;
    font-size: 30px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
  }
  .h2subtitle {
    margin: 8px 0;
    font-size: 15px;
    font-weight: bold;
  }
  .button-outer input {
    display: inline-block;
    margin: 15px 0 10px 0;
    padding: 7px 15px 9px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    outline: none;
    font-weight: bold;
    background-color: rgb(0, 173, 169);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    transition: all .5s ease 0s;
  }
  .button-outer input:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(0, 173, 169);
  }
  .button a {
    display: block;
    margin: 15px 0 10px 0;
    padding: 7px 15px 9px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    outline: none;
    font-weight: bold;
    background-color: rgb(0, 173, 169);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    transition: all .5s ease 0s;
  }
  .button a:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(0, 173, 169);
  }
  .button-outer {
    margin-right: auto;
    margin-left: auto;
    max-width: 140px;
  }
  .article__post-date {
    display: inline-block;
    margin: 10px 0 0 0;
    font-weight: bold;
    font-size: 15px;
    color: rgb(0, 173, 169);
  }
  .article__post {
    line-height: 1.25;
    padding: 0 0 5px;
    font-size: 15px;
    margin: 0px 0 10px 0;
  }
  .article__post a {
    margin: 3px 0 0 0;
    text-align: initial;
  }
  /* ###### SERVICE ####### */
  .h3title {
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
  }
  .h3title2 {
    letter-spacing: 1px;
    font-size: 15.5px;
    font-weight: bold;
    margin: 15px 0 40px;
    line-height: 1.5;
  }
  .h3subtitle {
    font-size: 14px;
  }
  .h3title3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 15px 0;
    line-height: 2;
    border-top: 3px solid rgb(255, 255, 255);
  }
  .service__blocktop {
    background-color: white;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .service__blockbottom {
    margin-top: 30px;
  }
  .service__blockbottom-photo {
    margin-top: 20px;
    width: 100%;
  }
  .service__blockbottom-photo .tbsf img {
    width: 100%;
  }
  .service__blockbottom-text {
    background-color: rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    padding: 20px;
    text-align: left;
  }
  /* ###### COMPANY ####### */
  .company__blocktop {
    position: relative;
  }
  .company__blocktop-photo img {
    width: 100%;
    min-height: 150px;
    max-height: 150px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .company__blocktop-text {
    font-weight: bold;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1
  }
  .company__blockmiddle-photo {
    margin-top: 20px;
    width: 100%;
  }
  .company__blockmiddle-photo .tbsf img {
    width: 100%;
  }
  .company__blockmiddle-text {
    background-color: rgb(125, 124, 125);
    color: rgb(255, 255, 255);
    padding: 20px;
    text-align: left;
  }
  .company__blockmiddle-text .text {
    line-height: 1.75;
    font-weight: 500;
  }
  .table1 {
    margin: 35px 0 10px;
    width: 100%;
  }
  .table1 th {
    padding: 20px 15px;
  }
  .table1 td {
    padding: 20px 15px;
  }
  .table1__left {
    text-align: left;
    width: 120px;
    color: rgb(0, 173, 169);
    font-size: 15px;
    font-weight: bold;
    border-top: rgb(125, 124, 125) 1px solid;
    border-bottom: rgb(125, 124, 125) 1px solid;
  }
  .table1__right {
    width: 100%;
    text-align: left;
    color: rgb(125, 124, 125);
    font-size: 15px;
    font-weight: bold;
    border-top: rgb(125, 124, 125) 1px solid;
    border-bottom: rgb(125, 124, 125) 1px solid;
  }
  /* ###### PROFILE ####### */
  .profile__block {
    margin-top: 35px;
  }
  .profile__block-photo {
    margin: 0 auto;
    width: 160px;
  }
  .profile__block-text {
    font-size: 15px;
    line-height: 1.45;
    width: 100%;
  }
  .sigaki {
    text-align: center;
  }
  /* ###### CONTACT ###### */
  .contact__blocktop {
    padding: 38px 0px;
  }
  .contact__blockleft {
    padding: 20px 30px 30px;
  }
  .contact__blockright {
    width: 100%
  }
  .contact__blockright {
    position: relative;
  }
  .contact__blockright-photo img {
    width: 100%;
    min-height: 347px;
    max-height: 347px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .contact__blockright-text {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1001;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
  }
  .contact__blockright-text .subanime2 span {
    color: rgb(255, 255, 255);
  }
  .contact__blockright-text img {
    width: 280px;
    margin-top: 15px;
  }
  .contacttable {
    width: 100%;
  }
  .contacttable th {
    padding: 20px 0px 10px;
  }
  .contacttable td {
    padding: 0px;
  }
  .contacttable__left {
    display: block;
    text-align: left;
    width: 100%;
    color: rgb(125, 124, 125);
    font-size: 15px;
  }
  .contacttable__left label {
    color: rgb(125, 124, 125);
  }
  .contacttable__right {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 15px;
  }
  .contacttable__right input {
    font-size: 15px;
    width: 100%;
    height: 40px;
    padding: 7px 8px 9px;
    border: rgb(125, 124, 125) 0px solid;
    background-color: rgb(226, 245, 245);
  }
  .contacttable__right textarea {
    font-size: 15px;
    padding: 8px;
    width: 100%;
    height: 80px;
    border: rgb(125, 124, 125) 0px solid;
    background-color: rgb(226, 245, 245);
  }
  ::placeholder {
    color: rgba(0, 173, 169, 0.5);
    font-size: 14px;
  }
  .contacttable__right .select-wrap select {
    color: rgb(125, 124, 125);
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    height: 40px;
    padding: 8px 30px 8px 8px;
    border: rgb(125, 124, 125) 0px solid;
    background-color: rgb(226, 245, 245);
  }
  .contacttable__right .select-wrap select option {
    color: rgb(125, 124, 125);
    font-weight: 600;
  }
  select {
    position: relative;
    padding: 10px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .select-wrap {
    position: relative;
  }
  .select-wrap:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 17px;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgb(0, 173, 169);
    border-left: 2px solid rgb(0, 173, 169);
    transform: translateY(-50%) rotate( -135deg);
    font-size: 20px;
    pointer-events: none;
  }
  .hitusu {
    margin-left: 10px;
    border-radius: 4px;
    padding: 0px 5px 1px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 173, 169);
    font-size: 13px;
  }
  .radiocheck {
    width: 50px;
  }
  .radio-input {
    font-size: 15px;
    line-height: 1.75;
    padding: 5px 30px 0 0;
  }
  .radiotext {
    padding: 0 20px 0 0;
  }
  .douitext input {
    vertical-align: -1px;
  }
  .douitext {
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    font-size: 15px;
  }
  .infobox {
    margin: 5px 0 15px;
    padding: 10px;
    height: 125px;
    overflow: scroll;
    border: rgb(125, 124, 125) 1px solid;
    background-color: rgb(255, 255, 255);
    text-align: left;
    text-align: justify;
  }
  .policytitle {
    color: rgb(0, 173, 169);
    font-weight: bold;
    font-size: 15px;
    padding: 15px 0;
  }
  .policytext {
    line-height: 1.75;
    font-size: 14px;
    text-align: left;
  }
  .contact__title {
    font-size: 0;
    white-space: nowrap;
    padding: 0;
  }
  .contact__title img {
    display: inline-block;
    height: 32px;
    width: auto;
  }
  /* ###### フッター ####### */
  .footer__logo {
    padding-top: 25px;
    margin: 0 auto 0px;
    width: 300px
  }
  .footer__text {
    white-space: nowrap;
    padding-left: 50px;
    padding-top: 5px;
    padding-bottom: 25px;
    margin: 0 auto;
    width: 300px;
    color: rgb(255, 255, 255);
    line-height: 1.75;
    font-size: 14px;
  }
}

/* ################################################## 768px以上 ################################################## */

@media (min-width: 768px) {
  .sf {
    display: none !important;
  }
  .tb {
    display: none !important;
  }
  .tbsfinline {
    display: none !important;
  }
  .tbsf {
    display: none !important;
  }
  .pcinline {
    display: inline !important;
  }
  .pctb {
    display: block !important;
  }
  .pc {
    display: block !important;
  }
  .pconly {
    display: block !important;
  }
  .pctbsfonly {
    display: block !important;
  }
  .contents-topbtn {
    padding: 0px 0px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1160px;
  }
  .contents0 {
    padding: 0px 30px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1160px;
  }
  .contents {
    padding: 50px 30px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1160px;
  }
  .contents2 {
    padding: 45px 30px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1160px;
  }
  .contents-contact {
    padding: 0 0 0 30px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1160px;
  }
  p, dd, td, input {
    line-height: 1.5;
    font-size: 16px;
  }
  /* ### TOPへ ### */
  #topbtn {
    margin-right: 30px;
    text-align: right;
  }
  #topbtn {
    position: fixed;
    right: 0;
    bottom: 45px;
    border-radius: 5px;
    width: 45px;
    height: 45px;
    background: rgb(255, 255, 255);
    text-align: center;
    text-decoration: none;
    color: rgb(0, 173, 169);
    border: 2px solid rgb(0, 173, 169);
    font-size: 20px;
    z-index: 1005;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .topbtn__text {
    margin-top: -7px;
    color: rgb(0, 173, 169);
    font-size: 11px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #topbtn:active {
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 2px;
  }
  /* ###### ヘッダー ####### */
  header {
    z-index: 1003;
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: fixed;
    height: 125px;
    -webkit-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.2));
  }
  .headerspace {
    height: 125px;
  }
  #service,#profile,#contact,#company {
     display: block;
     padding-top: 125px;
     margin-top: -125px;
 }
  .header__copy {
    background-color: rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    letter-spacing: 3px;
    font-weight: normal;
    padding: 3px 5px;
    height: 30px;
    font-size: 16px;
    text-align: center;
    width: 100%;
  }
  .header {
    display: table;
    width: 100%;
    table-layout: fixed;
    height: 95px;
  }
  .header__logo {
    display: table-cell;
    vertical-align: middle;
    width: 393px;
  }
  .header__nav {
    display: block !important;
  }
  nav {
    text-align: right;
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    font-size: 15px;
    width: 100%;
  }
  .header__nav-link {
    margin: 0 0 0 25px;
    display: inline-block;
    line-height: 2;
  }
  .header__nav-link a {
    transition: all .5s ease 0s;
  }
  .header__nav-link a:hover {
    color: rgb(0, 173, 169);
  }
  #navibtn {
    display: none;
  }
  /* ###### トップページ メイン ###### */
  .slider_fade {
    position: relative;
  }
  .main {
    position: relative;
  }
  .slide-img img {
    width: 100%;
    min-height: 560px;
    max-height: 560px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .main__block-text {
    font-weight: bold;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1
  }
  .main__subtitle {
    font-size: 38px;
    color: white;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
  }
  .main__subtitle img {
    display: inline-block;
    vertical-align: -3px;
    margin: 0 5px;
  }
  .main__title {
    font-size: 0;
    white-space: nowrap;
    margin: 30px 0 30px 0;
    padding: 0;
  }
  .main__title img {
    display: inline-block;
  }
  .main__text {
    letter-spacing: 1.5px;
    font-size: 23px;
    line-height: 1.35;
    color: white;
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
  }
  /* ###### NEWS ####### */
  .h2title {
    letter-spacing: 1px;
    font-size: 34px;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
  }
  .h2subtitle {
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
  }
  .button a {
    display: block;
    margin: 20px 0 10px 0;
    padding: 7px 15px 9px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    outline: none;
    font-weight: bold;
    background-color: rgb(0, 173, 169);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    transition: all .5s ease 0s;
  }
  .button a:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(0, 173, 169);
  }
  .button-outer input {
    display: inline-block;
    margin: 20px 0 10px 0;
    padding: 7px 15px 9px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    outline: none;
    font-weight: bold;
    background-color: rgb(0, 173, 169);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    transition: all .5s ease 0s;
  }
  .button-outer input:hover {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(0, 173, 169);
    color: rgb(0, 173, 169);
  }
  .button-outer {
    margin-right: auto;
    margin-left: auto;
    max-width: 160px;
  }
  .news__block-all {
    font-size: 0;
    width: 709px;
    margin: 0 auto;
  }
  .news__block1 {
    display: inline-block;
    vertical-align: middle;
    width: 300px;
  }
  .news__block2 {
    display: inline-block;
    vertical-align: middle;
    width: 409px;
  }
  .article__post-date {
    display: inline-block;
    margin: 10px 0 0 0;
    font-weight: bold;
    font-size: 16px;
    color: rgb(0, 173, 169);
  }
  .article__post {
    line-height: 1.25;
    padding: 0 0 5px;
    font-size: 16px;
    margin: 0px 0 10px 0;
  }
  .article__post a {
    margin: 3px 0 0 0;
    text-align: initial;
  }
  /* ###### SERVICE ####### */
  .h3title {
    white-space: nowrap;
    font-size: 19px;
    font-weight: bold;
    margin: 15px 0;
  }
  .h3title2 {
    letter-spacing: 1.2px;
    text-align: center;
    font-size: 16.5px;
    font-weight: bold;
    margin: 15px 0 40px;
    line-height: 1.75;
  }
  .h3subtitle {
    font-size: 16px;
  }
  .h3title3 {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0 15px 0;
    line-height: 2;
    border-top: 4px solid rgb(255, 255, 255);
  }
  .service__blocktop-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .service__blocktop {
    width: 33.33%;
    background-color: white;
    padding: 0 25px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .service__blocktop:nth-child(2n) {
    border-right: rgb(125, 124, 125) 1px solid;
    border-left: rgb(125, 124, 125) 1px solid;
  }
  .service__blockbottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
  }
  .service__blockbottom-photo {
    width: 30%;
  }
  .service__blockbottom-photo .pc img {
    width: 100%;
    min-height: 294px;
    max-height: 294px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .service__blockbottom-text {
    background-color: rgb(0, 173, 169);
    color: rgb(255, 255, 255);
    width: 67.5%;
    padding: 35px;
    text-align: left;
  }
  .service__blockbottom-text.ml {
    margin-left: 2.5%;
  }
  .service__blockbottom-text.mr {
    margin-right: 2.5%;
  }
  /* ###### COMPANY ####### */
  .company__blocktop {
    position: relative;
  }
  .company__blocktop-photo img {
    width: 100%;
    min-height: 170px;
    max-height: 170px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .company__blocktop-text {
    font-weight: bold;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1
  }
  .company__blockmiddle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .company__blockmiddle-photo {
    width: 30%;
  }
  .company__blockmiddle-photo.pc img {
    width: 100%;
    min-height: 294px;
    max-height: 294px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .company__blockmiddle-text {
    background-color: rgb(125, 124, 125);
    color: rgb(255, 255, 255);
    width: 67.5%;
    padding: 25px;
    text-align: left;
    height: 294px;
  }
  .company__blockmiddle-text .text {
    line-height: 1.75;
    font-weight: 500;
  }
  .company__blockmiddle-text.ml {
    margin-left: 2.5%;
  }
  .table1 {
    margin: 50px 0 0px;
    width: 100%;
  }
  .table1 th {
    padding: 20px 15px;
  }
  .table1 td {
    padding: 20px 15px;
  }
  .table1__left {
    text-align: left;
    width: 190px;
    color: rgb(0, 173, 169);
    font-size: 16px;
    font-weight: bold;
    border-top: rgb(125, 124, 125) 1px solid;
    border-bottom: rgb(125, 124, 125) 1px solid;
  }
  .table1__right {
    width: 100%;
    text-align: left;
    color: rgb(125, 124, 125);
    font-size: 16px;
    font-weight: bold;
    border-top: rgb(125, 124, 125) 1px solid;
    border-bottom: rgb(125, 124, 125) 1px solid;
  }
  /* ###### PROFILE ####### */
  .profile__block {
    margin-top: 40px;
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .profile__block-photo {
    display: table-cell;
    vertical-align: top;
    width: 175px;
  }
  .profile__block-text {
    display: table-cell;
    vertical-align: top;
    font-size: 16px;
    padding-right: 30px;
    line-height: 1.45;
    width: 100%;
  }
  .sigaki {
    text-align: right;
  }
  /* ###### CONTACT ###### */
  .contact__blocktop {
    padding: 45px 0px;
  }
  .contact__block-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contact__blockleft {
    padding: 40px 50px 0px 0;
    width: 50%
  }
  .contact__blockright {
    width: 50%
  }
  .contact__blockright2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 1002;
  }
  .contact__blockright {
    position: relative;
  }
  .contact__blockright-photo img {
    width: 100%;
    min-height: 850px;
    max-height: 850px;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .contact__blockright-text {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1001;
    color: rgb(255, 255, 255);
    font-size: 23px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
  }
  .contact__blockright-text .subanime2 span {
    color: rgb(255, 255, 255);
  }
  .contact__blockright-text img {
    margin-top: 20px;
  }
  .contacttable {
    width: 100%;
  }
  .contacttable th {
    padding: 20px 0px 10px;
  }
  .contacttable td {
    padding: 0px;
  }
  .contacttable__left {
    display: block;
    text-align: left;
    width: 100%;
    color: rgb(125, 124, 125);
    font-size: 15px;
  }
  .contacttable__left label {
    color: rgb(125, 124, 125);
  }
  .contacttable__right {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 15px;
  }
  .contacttable__right input {
    font-size: 15px;
    width: 100%;
    height: 40px;
    padding: 7px 8px 9px;
    border: rgb(125, 124, 125) 0px solid;
    background-color: rgb(226, 245, 245);
  }
  .contacttable__right textarea {
    font-size: 15px;
    padding: 8px;
    width: 100%;
    height: 80px;
    border: rgb(125, 124, 125) 0px solid;
    background-color: rgb(226, 245, 245);
  }
  ::placeholder {
    color: rgba(0, 173, 169, 0.5);
    font-size: 14px;
  }
  .contacttable__right .select-wrap select {
    color: rgb(125, 124, 125);
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    height: 40px;
    padding: 8px 30px 8px 8px;
    border: rgb(125, 124, 125) 0px solid;
    background-color: rgb(226, 245, 245);
  }
  .contacttable__right .select-wrap select option {
    color: rgb(125, 124, 125);
    font-weight: 600;
  }
  select {
    position: relative;
    padding: 10px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .select-wrap {
    position: relative;
  }
  .select-wrap:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 17px;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgb(0, 173, 169);
    border-left: 2px solid rgb(0, 173, 169);
    transform: translateY(-50%) rotate( -135deg);
    font-size: 20px;
    pointer-events: none;
  }
  .hitusu {
    margin-left: 10px;
    border-radius: 4px;
    padding: 0px 5px 1px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 173, 169);
    font-size: 13px;
  }
  .radiocheck {
    width: 50px;
  }
  .radio-input {
    font-size: 15px;
    line-height: 1.75;
    padding: 5px 30px 0 0;
  }
  .radiotext {
    padding: 0 20px 0 0;
  }
  .douitext input {
    vertical-align: -1px;
  }
  .douitext {
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    font-size: 15px;
  }
  .infobox {
    margin: 5px 0 15px;
    padding: 10px;
    height: 125px;
    overflow: scroll;
    border: rgb(125, 124, 125) 1px solid;
    background-color: rgb(255, 255, 255);
    text-align: left;
    text-align: justify;
  }
  .policytitle {
    color: rgb(0, 173, 169);
    font-weight: bold;
    font-size: 15px;
    padding: 15px 0;
  }
  .policytext {
    line-height: 1.75;
    font-size: 14px;
    text-align: left;
  }
  .contact__title {
    font-size: 0;
    white-space: nowrap;
    padding: 0;
  }
  .contact__title img {
    display: inline-block;
    height: 35px;
  }
  /* ###### フッター ####### */
  .footer__logo {
    padding-top: 30px;
    margin: 0 auto 0px;
    width: 399px
  }
  .footer__text {
    white-space: nowrap;
    padding-left: 70px;
    padding-top: 5px;
    padding-bottom: 30px;
    margin: 0 auto;
    width: 399px;
    color: rgb(255, 255, 255);
    line-height: 1.75;
    font-size: 16px;
  }
}

/* ################################################## IEのみ適用 ################################################## */

@media all and (-ms-high-contrast: none) {
  #topbtn i {
    right: 30px;
  }
  :-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
  }
  .mainanime span {
    opacity: 1;
    animation: none;
  }
  .subanime span {
    opacity: 1;
    animation: none;
  }
  .mainanime2 span.effect-scroll {
    opacity: 1;
    animation: none;
  }
  .subanime2 span.effect-scroll {
    opacity: 1;
    animation: none;
  }
  /* img {
    width: 100% !important;
  } */
}

@media all and (-ms-high-contrast: none) and (min-width: 768px) {}

@media all and (-ms-high-contrast: none) and (min-width: 480px) and (max-width: 767px) {
  .header__logo img {
    width: 300px;
  }
}

@media all and (-ms-high-contrast: none) and (max-width: 479px) {
  .header__logo img {
    width: 245px;
  }
}