@charset "UTF-8";

/*
PC：設定なし（実質1025px以上）
タブレット：1024px [min-width : 1025px]
スマートフォン：599px [min-width : 600px]
*/

/* 共通 */
p,
div {
  font-family: 'Noto Serif JP', serif;
}
img {
  width: 100%;
}
h2 {
  color: #DD2E1E;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 35px;
}
h2 span {
  display: block;
  font-size: 22px;
  line-height: 64px;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
section{
  padding: 100px 0;
  font-family: 'Noto Serif JP', serif;
}
.pc {
  display: none;
}
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

/*　ハンバーガーボタン */
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 22px;
  top   : 14px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger {
  text-decoration: none;
  background: #B32619;
  color: #FFF;
  width: 50px;
  height: 50px;
  line-height: 120px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  transition: .4s;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 25px;
  height  : 2px ;
  left    : 13px;
  background : #fff;
  -webkit-transition: 0.5s all;
  -moz-transition   : 0.5s all;
  transition        : 0.5s all;
}
.hamburger span:nth-child(1) {
  top: 17px;
}
.hamburger span:nth-child(2) {
  top: 25px;
}
.hamburger span:nth-child(3) {
  top: 33px;
}

/* ナビ開いてる時のボタン */

.hamburger.active span:nth-child(1) {
  top : 23px;
  left: 14px;
  width: 24px;
    background : #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}

.hamburger.active span:nth-child(3) {
  top: 23px;
  width: 24px;
  background : #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
nav.globalMenuSp {
  position: fixed;
  z-index : -3;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba(0,0,0,0.8);
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
  font-family: 'Noto Serif JP', serif;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
  z-index: 2;
}

/* ///////////////////// */
/* main */
/* ///////////////////// */

.main {
  height: 100vh;
  position: relative;
  padding: 0;
}
.main-img {
  width: 100%;
  height: 100%;
}
.main img {
  object-fit: cover;
  object-position: 0 50%;
  height: 100%;
}
.main .main-text {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  top: 14vh;
  left: 2%;
  width: max-content;
}
.main .main-text ul {
  color: #DD2E1E;
  font-weight: 500;
}
.main .main-text ul:first-child {
  display: flex;
}
.main .main-text ul li {
  font-size: 17vw;
  letter-spacing: 3px;
}
.text-to {
  margin-left: 7.5vw;
}
.end-title {
  display: flex;
}
.main .main-text ul li .j-title {
  font-size: 5.2vw;
  font-weight: 600;
  margin-left: 8px;
  letter-spacing: -1px;
  padding-top: 11vw;
}
.main-text > .demoTxt span {
  margin: 0;
  font-size: 5vw;
}
#tecno {
  position: absolute;
  width: 56%;
  right: 0;
  bottom: 12vh;
}
#message {
  position: relative;
}
.message_text {
  position: relative;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
}
#message img {
  z-index: -2;
  position: absolute;
  width: 70%;
  right: 0;
  top: 0;
}
.mask {
  position: absolute;
  z-index: -1;
  background: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.message_text .text {
  margin-top: 60px;
}
hr {
  border: none;
  border-top: 3px solid #B32619;
  color: #333;
  overflow: visible;
  text-align: center;
  height: 5px;
  width: 82%;
  margin: 0 auto;
}
.pt {
  margin-top: 60px;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 5px;
  font-weight: 500;
}
.pt span {
  display: block;
}
.corp {
  font-size: 18px;
  font-weight: 500;
  margin-top: 5px;
}
.text {
  color: #2a2a2a;
  line-height: 32px;
  letter-spacing: 1px;
  font-size: 17px;
  font-family: 'Noto Serif JP', serif;
  text-align: start;
}

/* テキストアニメーション */

.main-text ul li {
	-webkit-animation: text-focus-in 2.0s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: text-focus-in 2.0s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.main-text > .demoTxt {
  display: block;
  margin-top: 10vh;
  font-weight:  600;
  text-align: center;
  margin-left: -1.8vw;
  color: #DD2E1E;
}
.main-text > .demoTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

  /* テキストアニメーションここまで */

/* //////////////////////////////// */
/* serviceコンテンツ　ここから */
/* //////////////////////////////// */

#service {
  background-color: #EAEFF2;
  padding-bottom: 0;
  position: relative;
}
.service-container {
  min-width: 285px;
}
.service-container >div {
  background-color: #fff;
  width: 90%;
  margin: 0 auto 60px auto;
  text-align: center;
  box-shadow: 22px 15px 4px 0px #ccc;
  border-top: solid 13px #B32619;
  padding: 10px 0 45px 0;
}
.service-container img {
  width: 100px;
  padding: 30px 0 20px 0;
}
.service-container h3 {
  background: #B32619;
  color: #fff;
  width: 197px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  text-align: center;
  padding: 7px 9px;
  border-radius: 5px;
  margin: 0 auto;
}
.service-container >div p {
  width: 80%;
  display: block;
  margin: 0 auto;
  text-align: start;
  letter-spacing: 1px;
  line-height: 27px;
  padding: 15px 0 30px 0;
  font-size: 19px;
}
.media {
  margin-top: 30px;
}
.media-sub h4 {
  position: relative;
  color: #B32619;
  font-size: 16px;
  padding: 10px 0;
  text-align: center;
  margin: 1.5em 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.media-sub h4::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 150px;
  height: 53px;
  border-radius: 50%;
  border: 5px solid rgba(179,38,25,0.6);
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.media-sub div  {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 30px;
  display: inline-block;
  letter-spacing: 1px;
  line-height: 27px;
  font-size: 18px;
  text-align: start;
}
.media-sub span {
  display: block;
  margin: 10px 0 15px 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 27px;
  text-align: center;
}

/* //////////////////////////////// */
/* serviceコンテンツ　ここまで */
/* //////////////////////////////// */
/* //////////////////////////////// */
  /* Statementコンテンツ　ここから */
/* //////////////////////////////// */

#Philosophy {
  background-color: #fff;
}
.child3 {
  position: relative;
  margin-top: 182px;
}
#circle{
  width: 200px;
  position: absolute;
  z-index: 2;
  top: -119px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.child2 {
  margin-top: -48px;
}
.p_service__parts__head {
  display: block;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.p_service__parts__head .sasaeru {
  margin: auto;
  color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #b32619;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: 32px 1px 5px 0px #ccc;
  width: calc(100vmin - 85px);
  height: calc(100vmin - 85px);
  margin: 0 auto 30px auto;
}
.Philosophy-box .child1 .sec,
.Philosophy-box .child2 .fort
{
  background: #DD2E1E;
}
.Philosophy-box .child1 .sec .num,
.Philosophy-box .child2 .fort .num  
{
  color: #EE4E40;
}
.p_service__parts__head .sasaeru dl {
  width: 100%;
  position: relative;
}
.p_service__parts__head .sasaeru dl .title_wrap {
  position: relative;
  width: 100%;
}
.p_service__parts__head .sasaeru dl {
  width: 89%;
}
.p_service__parts__head .sasaeru dl dd {
  font-size: 4.5vw;
  line-height: 1.8;
  font-weight: bold;
  position: absolute;
  top: 111px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
}
.p_service__parts__head .sasaeru .num {
  color: #dd2e1f;
  font-size: 5.5rem;
  display: block;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  opacity: 0.8;
  text-align: center;
  line-height: 1;
  padding-top:9%;
}
.p_service__parts__head .sasaeru .title_wrap .title {
  position: absolute;
  font-size: 4.5vw;
  font-weight: bold;
  font-family: "見出ゴMB31", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.22em;
  top: 62px;
  bottom: 0;
  width: 100%;
  justify-content: center;
  display: flex;
}

/* //////////////////////////////// */
  /* Statementコンテンツ　ここまで */
/* //////////////////////////////// */

/* //////////////////////////////// */
  /* Newsコンテンツ　ここから */
/* //////////////////////////////// */

#news {
  background: #EAEFF2;
}
.topIrNews__list {
  margin-bottom: 8.53333vw;
  background: #fff;
  width: 90%;
  margin: 40px auto 0 auto;
}
.topIrNews__item {
  position: relative;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
}
.topIrNews__itemLink {
  justify-content: center;
  padding: 6.4vw 0 5.46667vw;
  box-sizing: border-box;
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
}
.topIrNews__itemContent {
  display: block;
  width: 73.6vw;
  align-items: center;
}
.topIrNews__itemBox {
  display: flex;
  align-items: center;
  margin-bottom: 2.26667vw;
  font-weight: 700;
}
.topIrNews__itemTxt {
  font-size: 4.73333vw;
  line-height: 1.5;
  text-align: start;
  color: #333;
}
.topIrNews__itemDate {
  margin-right: 3.2vw;
  font-size: 3.99999vw;
  color: #DD2E1E;
}
.topIrNews__itemPdf {
  display: flex;
}
.btn {
  position: relative;
  display: inline-block;
  padding: .9em 4em;
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background-color: #ddd;
  border: 2px solid #ddd;
  opacity: 1;
}
.btn::after {
  position: absolute;
  top: 50%;
  right: .2em;
  content: '';
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #fff;
  transition: all .2s;
}
.btn:hover::after {
  right: -.05em;
}
.topIrNews__btn {
  width: max-content;
  margin: 30px auto 0 auto;
}

/* //////////////////////////////// */
  /* Newsコンテンツ　ここまで */
/* //////////////////////////////// */

/* //////////////////////////////// */
  /* companyコンテンツ　ここから */
/* //////////////////////////////// */

.company-area {
  width: 80%;
  margin: 0 auto;
}
.p-company__tab__contents__inner.f_js-is_show {
  display: block;
}
.p-company__list > li:first-child {
  border-top: 1px solid #DFDFDF;
}
.p-company__list > li {
  display: block;
  font-size: 17px;
  letter-spacing: 0.08em;
  padding: 25px 10px;
  border-bottom: 1px solid #DFDFDF;
  line-height: 1.7;
}
.p-company__list > li .head {
  width: 190px;
  font-weight: bold;
  margin-bottom: 15px;
}
.p-company__list > li .cont {
  flex: 1;
  padding-left: 7px;
  font-size: 17px;
}
.cont ul li {
  margin-bottom: 15px;
}
.cont ul li span:first-child {
  padding-left: 20px;
}
.en-name{
  display: block;
}
.dc-en-name {
  display: block;
}
.p-company__tab__contents__inner {
  display: none;
  transition: all 0.3s ease;
}
.longurl {
  overflow-wrap:break-word;
}
.map iframe {
  width: 100%;
  height: 400px;
}
.link{
  display: block;
  color: #333;
  font-weight: 600;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  margin-top: 20px;
  width: max-content;
}
.link:hover {
  color: #ddd;
}

/* //////////////////////////////// */
  /* companyコンテンツ　ここまで */
/* //////////////////////////////// */

/* //////////////////////////////// */
  /* footer　ここから */
/* //////////////////////////////// */

footer {
  background: #B32619;
  color: #fff;
  font-size: 13px;
}
footer > small {
  display: block;
  width: max-content;
  margin: 0 auto;
  padding: 15px 0;
}

/* //////////////////////////////// */
  /* footer　ここまで */
/* //////////////////////////////// */

/* //////////////////////////////// */
  /* Privacy policy　ここから */
/* //////////////////////////////// */

.praivacy-contents {
width: 81%;
margin: 0 auto;
font-size: 18px;
line-height: 27px;
letter-spacing: 1px;
max-width: 1040px;
}
.bgContentsWhite {
  margin-top: 75px;
}
.bgContentsWhite >div {
  margin-bottom: 60px;
}
.bgContentsWhite h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #B32619;
  text-align: center;
}
.bgContentsWhite ol {
  list-style: decimal;
  width: 85%;
  margin: 30px auto;
}
.bgContentsWhite ol li {
  margin-bottom: 15px;
}
.bgContentsWhite ol li::marker {
  color: #B32619;
  font-weight: 600;
}
.bgContentsWhite .skip-num {
list-style: none;
}
.bgContentsWhite li ul{
  padding: 0;
  font: 17px/2 'Noto Serif JP', serif;
  font-weight: 500;
  width:350px;
  list-style: none;
  width: 100%;
  margin: 0 auto;
}
.bgContentsWhite li ul li{
  position: relative;
  padding: 7px 5px 0 35px;
  margin-bottom:5px;
  color: #333;
}
.bgContentsWhite li ul li:before{
  content: "";
  position: absolute;
  left: 10px;
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #B32619;
  top: 23px;;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.end {
  margin: 0 auto;
  width: max-content;
}
.contact-box {
  padding: 27px;
    border: 1px solid #B32619;
}
.contact-box >p {
  margin-bottom: 15px;
}

/* //////////////////////////////// */
  /* Privacy policy　ここまで */
/* //////////////////////////////// */


/*SP 横向き*/
@media (orientation: landscape) and (max-width: 750px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}

@media screen and (min-width:600px) {
  /*　for iPad 　*/

  #wrapper {
    position: relative;
    background: #fff;
  }

/* //////////////////////////////// */
/* MV　ここから */
/* //////////////////////////////// */

.main .main-text ul li {
  font-size: 14vh;
}
.text-to {
  margin-left: 5.5vh;
}
.main .main-text ul li .j-title {
  font-size: 4.2vh;
  padding-top: 9.3vh;
}
.main-text > .demoTxt  {
  margin-left: -3.7vw;
}
.main-text > .demoTxt span {
  font-size: 3.7vh;
}
#tecno {
  width: 38%;
}


/* //////////////////////////////// */
/* MV　ここまで */
/* //////////////////////////////// */
/* //////////////////////////////// */
/* messageコンテンツ　ここから */
/* //////////////////////////////// */

  #message h2 {
  position: relative;
  z-index: 2;
  }
  .message_text {
    width: 70%;
  }
  .message_text .text{
    margin: 60px auto 0 auto;
  }
  #message img{
    z-index: 0;
  }
  .mask {
    z-index: 0;
  }
  .pt span  {
    display: inline;
  }

  /* //////////////////////////////// */
  /* messageコンテンツ　ここまで */
  /* //////////////////////////////// */
  /* //////////////////////////////// */
  /* serviceコンテンツ　ここから */
  /* //////////////////////////////// */

  .service-container h3 {
    font-size: 17px;
    width: 215px;
    padding: 9px 9px;
  }
  .service-container >div {
    width: 70%;
  }

  /* //////////////////////////////// */
  /* serviceコンテンツ　ここまで */
  /* //////////////////////////////// */
  /* //////////////////////////////// */
  /* Philosophyコンテンツ　ここから */
  /* //////////////////////////////// */

  .child1,.child2{
    display: flex;
    margin: 0 auto;
    min-width: 600px;
    max-width: 656px;
  }
  .child2{
    margin-top: 25px;
  }
  .box-in {
    height: 330px;
    width: 370px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
  }
  .box2,.box4{
    margin-left: 55px;
  }
  .box1, .box2, .box3, .box4 {
    width: auto;
    height: auto;    
  }
  .box-in div {
    font-size: 18px;
    padding-top: 18%;
  }
  .box-in div span {
    font-size: 32px;
    line-height: 93px;
  }
  .p_service__parts__head .sasaeru {
    margin: auto;
    max-width: 382px;
    max-height: 343px;
    width: 49vw;
    height: 49vw;
  }
  .Philosophy-box .p_service__parts__head .thir {
    background-color: #DD2E1E;
  }
  .Philosophy-box .p_service__parts__head .thir .num {
    color: #EE4E40;
  }
  .Philosophy-box .p_service__parts__head .fort {
    background-color: #b32619;
  }
  .p_service__parts__head .sasaeru dl {
    width: 80%;
  }
  .p_service__parts__head .sasaeru .title_wrap .title {
    font-size: 19px;
    top: 91px;
  }
  .p_service__parts__head .sasaeru dl dd {
    font-size: 15px;
    top: 147px;
  }
  .p_service__parts__head .sasaeru dl dd ul {
    display: flex;
    width: max-content;
    margin: 0 auto;
  }
  #circle {
    width: 270px;
    margin: 25px auto;
  }
  .letter {
    font-size: 3em;
  }

  /* //////////////////////////////// */
  /* Philosophyコンテンツ　ここまで */
  /* //////////////////////////////// */
  /* //////////////////////////////// */
  /* Newsコンテンツ　ここから */
  /* //////////////////////////////// */
  .topIrNews__itemTxt {
    font-size: 18px;
  }
  .topIrNews__itemDate {
    font-size: 19px;
  }
  .topIrNews__itemLink {
    padding: 1.8vw 0 1.8vw;
  }
  .topIrNews__itemBox {
    margin-bottom: 1.26667vw;
  }
  .topIrNews__list {
    width: 80%;
  }
  .topIrNews__btn {
    margin: 60px auto 0 auto;
  }
  
  /* //////////////////////////////// */
  /* Newsコンテンツ　ここまで */
  /* //////////////////////////////// */
  /* //////////////////////////////// */
  /* companyコンテンツ　ここから */
  /* //////////////////////////////// */
  
  .en-name {
    display: inline;
  }
  .cont ul li span:first-child {
    padding-left: 20px;
  }
  .cont ul li .hu-name {
    padding-left: 57px !important;
  }
  .cont ul li .dc-name {
    padding-left: 39px !important;
  }
  .en-name {
    padding-left: 22px;
    display: inline;
  }
  .cont ul li .dc-en-name {
    padding-left: 39px;
    display: inline;
  }
  .p-company__list > li .cont{
    padding-left: 10px;
  }
  .bgContentsWhite li ul {
    width: 90%;
  }

/* //////////////////////////////// */
/* companyコンテンツ　ここまで */
/* //////////////////////////////// */

}

@media screen and (min-width:1025px) {
  /*　for PC　*/

  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .hamburger {
    display: none;
  }
  .wrapper  {
    position: relative;
  }
  nav.globalMenuSp {
    background: rgba(179,38,25,0.8);
    opacity: 100;
    visibility: visible;
    width: 15%;
    max-width:200px;
    position: absolute;
    left: 81%;
    top: 0;
    border-radius: 0 0 10px 10px;
    z-index: 2;
  }
  nav.globalMenuSp ul {
    padding: 40px 0;
  }
  nav.globalMenuSp ul li a{
      color: #fff;
      padding: 0.5em 0;
      font-size: 17px;
      font-weight: 700;
  }
  nav.globalMenuSp ul li a:hover{
      color: #EAEFF2;
  }
  .main .main-text {
    top: 2vh;
    left: 8%;
  }
  .main .main-text ul li {
    font-size: 20vh;
  }
  .main .main-text ul .text-to {
    margin-left: 7.2vh;
  }
  .main .main-text ul li .j-title {
    font-size: 5.6vh;
    margin-left: 18px;
    letter-spacing: 0;
    padding-top: 13.8vh;
  }
  .main-text > .demoTxt {
    margin-left: -0.9vw;
    margin-top: 4vw;
  }
  .main-text > .demoTxt span {
    font-size: 5vh;
    margin: 0;
  }
  #tecno {
    position: absolute;
    width: 27%;
    right: 2%;
    top: 44vh;
  }
  #message img {
    width: 42%;
  }
  .message_text {
    width: 796px;
  }
  .message_text .text{
    margin: 60px auto 0 auto;
    width: 100%;
  }
  hr {
    width: 443px;
    margin: 0;
  }
  .pt {
    letter-spacing: 1px;
  }

  /* //////////////////////////////// */
/* Serviceコンテンツ　ここから */
/* //////////////////////////////// */

  .service-container .media p {
    text-align: center;
  }

  /* //////////////////////////////// */
  /* Serviceコンテンツ　ここから */
  /* //////////////////////////////// */

  .child1,.child2 {
    width: 855px;
  }
  .p_service__parts__head .sasaeru {
    width: 70vw;
    height: 70vw;
  }
  .p_service__parts__head .sasaeru dl dd {
    font-size: 20px;
    top: 147px;
  }
  .child1,.child2{
    max-width: 100%;
  }

  /* //////////////////////////////// */
  /* Philosophyコンテンツ　ここまで */
  /* //////////////////////////////// */
  /* //////////////////////////////// */
  /* Newsコンテンツ　ここから */
  /* //////////////////////////////// *

  /* //////////////////////////////// */
  /* Newsコンテンツ　ここまで */
  /* //////////////////////////////// */
  /* //////////////////////////////// */
  /* companyコンテンツ　ここから */
  /* //////////////////////////////// */

  .p-company__list > li {
    display: flex;
  }
  .p-company__list > li .head {
    width: 25%;
  }
  .en-name {
    padding-left: 57px !important;
  }
  .cont ul li .dc-en-name {
    padding-left: 74px;
  }

  .p-company__list > li .head {
    margin-bottom: 0;
  }
/* //////////////////////////////// */
  /* companyコンテンツ　ここまで */
/* //////////////////////////////// */
/* //////////////////////////////// */
  /* Privacy policy　ここから */
/* //////////////////////////////// */

.contact-box {
  text-align: center;
}
.contact-box >ul {
  text-align: start;
    width: max-content;
    margin: 0 auto;
}

/* //////////////////////////////// */
  /* Privacy policy　ここから */
/* //////////////////////////////// */

}