@charset 'UTF-8';
html, body {
  height: 100%;
  margin: 0;
}

.br-pc {
  display: none;
}

.br-sp {
  display: block;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #ffffff;
}

body {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

header .head_logo {
  width: 100px;
}

.header-logo {
  z-index: 2;
  position: relative;
  width: 104px;
}


#wrapper {
  display: flex;
  flex-direction: column;
  background-size: cover;
}



.bg {
  background: linear-gradient(to right, rgba(160, 216, 167, 0.6) 30%, rgba(160, 216, 167, 0.6) 30%, rgba(55, 143, 69, 0.4) 30%, rgba(55, 143, 69, 0.4) 100%),
    url(../img/bg_sp.jpg);
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: calc(100vh - env(safe-area-inset-top, constant(safe-area-inset-top, 0px)));
}

.inner {
  margin: 56px 5% auto;
}

.main-logo {
  margin: 80px auto 10%;
  max-width: 250px;
  width: 70%;
}

.main-copy {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(34px, 10vw, 76px);
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 5%;
  overflow-wrap:break-word;
  margin-top:clamp(60px, 15vh, 240px); 
}

.sub-copy-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(15px, 4vw, 26px);
  font-feature-settings: "palt" 1;
  color: #fff;
  line-height: 2.2;
  letter-spacing: 0.5em;
  margin-bottom: 5%;
}

.sub-copy-en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(12px, 2.5vw, 15px);
  font-feature-settings: "palt" 1;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top:60px; 
  margin-bottom: 5%;
  overflow-wrap:break-word;
  border-left: #fff 1px solid;
  padding-left: 3%;
}


dt {

}

dd {
  padding: 8px 0px 24px;
  line-height: 1.5;
}


dd > a:link {
  color: #fff;
}

dd > a:visited {
  color: #fff;
}

dd > a:hover {
  color: #fff;
}

dd > a:active {
  color: #fff;
}


footer {
  margin-top: auto;
  text-align: center;
  color: #333;
}

.copyright {
  font-family: "Arsenal";
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.footer-policy {
  font-family: sans-serif;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.footer-policy a {
  text-decoration: none;
  color: #333;
}



/*ーーーーーーーーーー
.header
ーーーーーーーーーーー*/
#head_wrap {
  top: -100px;
  position: relative;
  width: 100%;
  margin: 100px auto 0;
  line-height: 1;
  z-index: 999;
  height: 0px;
  text-decoration: none;
  font-family: "Montserrat";
  letter-spacing: 0.1em;
}

#head_wrap a {
  text-decoration: none;
}

#head_wrap .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
}



#head_wrap .inner:after {
  content: "";
  clear: both;
  display: block;
}

#head_wrap .logo {
  float: left;
  margin-left: 26px;
}

#global-nav {
  position: absolute;
  right: 0;
  top: 0;
}

#global-nav ul {
  list-style: none;
  font-size: 14px;
  margin-right: 10px;
  display: inline-flex;
}

@media (max-width: 640px) {
  #global-nav ul {
    display: block;
    margin-right: 0px;
  }
}

#global-nav ul li {
  padding: 30px 20px;
}

#global-nav ul li:last-child {
  border-right: none;
}

@media (max-width: 640px) {
  #global-nav ul li {
    border-right: none;
  }
}

#global-nav ul li a {
  transition: all 0.6s ease 0s;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  font-feature-settings: "palt" 1;
  line-height: 1.8;
  letter-spacing: 0.3em;
}

/* Fixed */
#head_wrap.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  height: 100px;
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
  z-index: 9999;
}

#head_wrap.fixed .logo {
  font-size: 36px;
  color: #333;
}

#head_wrap.fixed #global-nav ul li a {
  color: #009660;
  padding: 2px;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 16px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle div {
  position: relative;
}

@media (max-width: 640px) {
  #head_wrap {
    top: 0;
    position: fixed;
    margin-top: 0;
    width: 100%;
    padding: 0;
    /* Fixed reset */
  }
  #head_wrap .inner {
    width: 100%;
    padding: 0;
    background: unset;
    height: auto;
  }
  #head_wrap .fixed {
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 56px;
    z-index: 999;
    position: relative;
  }
  #head_wrap.fixed .logo,
  #head_wrap .logo {
    position: absolute;
    left: 13px;
    top: 10px;
    filter: invert(60%) sepia(64%) saturate(2607%) hue-rotate(131deg) brightness(80%) contrast(93%);
    margin-left: 0;
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -500px;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    text-align: center;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 14px;
    /*margin-top: 20px;*/
  }
  #global-nav ul li {
    float: none;
    position: static;
  }
  #head_wrap #global-nav ul li a,
  #head_wrap.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    padding: 5px 0;
    color: #009660;
  }
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  #nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #009660;
    left: 0;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 11px;
  }
  #nav-toggle span:nth-child(3) {
    top: 22px;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
  }
}

#menu1,
#menu2,
#menu3,
#menu4,
#menu5 {
  margin-top: 500px;
  padding-top: 130px;
}

.co_area {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 4vw, 30px);
  font-feature-settings: "palt" 1;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.3em;
  width: 100%;
}

.co_set {
  width: 100%;
}

.co_title {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  overflow-wrap:break-word;
  margin-top:60px; 
}


.cf:before,
.cf:after {
  content: "";
  display: table;
}

.co_set_title {
  width: 100%;
  float: left;
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
}

.co_set_text {
  line-height: 28px;
  font-size: 14px;
  font-weight: 300;
  border-left: none;
  padding-left: 0px;
  width: 100%;
  float: left;
  padding-bottom: 28px;

}



/*ーーーーーーーーーー
MESSAGE
ーーーーーーーーーーー*/

.main-copy-message {
  text-align: center;
  font-size: 3.5vw;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.2em;
  margin-bottom: 10%;
}

.massage-flex {
  display: flex;
  flex-flow: column;
  margin-bottom: 50px;
}

.main-copy-image {
  }

.main-copy-image img {
  width: 100%;
  }

/*ーーーーーーーーーー
BRAND
ーーーーーーーーーーー*/
[class*="col-"],
.col-effect {
  position: relative;
}
[class*="col-"] {
  vertical-align: top;
  margin: 3%;
  box-sizing: border-box;
  text-align: center;
}
/*.frame-border {
  padding: 0;
  border: 1px solid #ddd;
}*/
.col-set li {
  display: inline-block;
}
.col-4 {
  width: 30%;
  overflow: hidden;
}
.col-4 a {
  font-size: 97%;
}
.col-effect img {
  display: block;
  width: 100%;
  height: auto;
}
.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: auto;
  height: 0;
  overflow: hidden;
  /* background-color: rgba(156,103,128,.6); */
  transition: 0.5s ease;
}
.andprism {
  background: url(../img/andprism_bg.jpg);
  background-position: 50% 50%;
  background-size: 100%;
}
.nene {
  background: url(../img/nene_bg.jpg);
  background-position: 50% 50%;
  background-size: 100%;
}
.col-effect {
  width: 80%;
  max-width: 300px;
}
.col-effect:hover .overlay {
  bottom: 0;
  height: 100%;
  overflow: hidden;
}
.overlay-text {
  white-space: nowrap;
  color: white;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.overlay-text a {
  color: white;
}


/*ーーーーーーーーーー
COMPANY
ーーーーーーーーーーー*/
.co_set_text a {
  color: white;
}


/*ーーーーーーーーーー
POLICY
ーーーーーーーーーーー*/
.co_title.policy {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  color: #069660;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  overflow-wrap:break-word;
  margin-top:60px; 
}






p.lead {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}

.co_text {
  line-height: 28px;
  font-size: 14px;
  border-left: none;
  padding-left: 0px;
  width: 100%;
  float: left;
  padding-bottom: 28px;
  letter-spacing: .1em;
}

.co_text ul {
  margin-top: 4px;
margin-bottom:20px ;
}

.co_text li {
  position: relative;
  margin: 0 0 4px;
  padding-left: 30px;
  list-style-type: none;
  line-height: 1.75em;
}

.co_text li::before {
  background: #009660;
  content: "";
  height: 10px;
  width: 10px;
  left: 10px;
  position: absolute;
  top: 7px;
}

.bold {
  font-weight: bold;
}

/*@media screen and (min-width: 768px) and (max-width: 959px) {
  .news {
    margin-bottom: 0;
  }  
}*/

@media screen and (min-width: 768px) {
  /* 768px以上に適用されるCSS（タブレット用） */
  .globalnav {
    height: 140px;
  }
  /*.main-logo {
    margin: 50px auto 50px;
    width: 500px;
  }*/
  .main-copy {
    line-height: 1.4;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    margin-top: clamp(20px, 2vh, 240px);
  }

  .bg {
    background: linear-gradient(to right,rgba(160, 216, 167, 0.6) 30%,rgba(160, 216, 167, 0.6) 30%,rgba(55, 143, 69, 0.4)30%, rgba(55, 143, 69, 0.4) 100%), /* 半透明の黒 */
    url(../img/bg_sp.jpg); /* 背景画像 */
  }


  .inner {
    margin: 0px 5% 10%;
  }

  .header.policy .fixed .logo,
  .header.policy .logo {
    filter: invert(60%) sepia(64%) saturate(2607%) hue-rotate(131deg) brightness(80%) contrast(93%);
  }

  .header.policy .inner {
    background-color: rgba(255, 255, 255, 0.9);
  }
  

  .co_area {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.2em;
    color: #fff;
    width: 100%;
    margin: 0px auto 70px;
  }
  .co_title {
    font-size: 44px;
    margin-bottom: 50px;
  }
  .co_title:before {
    width: 158px;
  }
  .co_set_title {
    width: 200px;
  }
  .co_set_text {
    line-height: 35px;
    font-size: 15px;
    padding-left: 40px;
    width: calc(85% - 200px);
    float: left;
    padding-bottom: 22px;
  }

  /*ーーーーーーーーーー
MESSAGE
ーーーーーーーーーーー*/

  .main-copy-message {
    font-size: 1.5vw;
    margin-bottom: 0px;
    flex-basis: 60%;
    margin-right: 5%;
    align-self: center;
    line-height: 2.5;
  }

  .massage-flex {
    flex-flow:row;
    margin-bottom: 50px;
  }
  
  .main-copy-image {
    display: none;
    }
  
  .main-copy-image img {
    width: 100%;
    }

  /*ーーーーーーーーーー
BRAND
ーーーーーーーーーーー*/
  .col-effect {
    width: 260px;
  }
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }

  .bg {
    background: linear-gradient(to right,rgba(160, 216, 167, 0.6) 30%,rgba(160, 216, 167, 0.6) 30%,rgba(55, 143, 69, 0.4)30%, rgba(55, 143, 69, 0.4) 100%), /* 半透明の黒 */
    url(../img/bg_pc.jpg); /* 背景画像 */
    background-size: cover;
    background-position: calc(100% - 0px) center;
    display: block;
    /*position:fixed;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .header-logo {
    width: 164px;
  }

  .inner {
    margin-top: 20px;
    margin-right: 5%;
    margin-bottom: 20px;
    margin-left: calc(30% - 220px);
  }

  .main-copy p {
    font-size: 76px;
    margin-bottom: 0px;
  }

  .sub-copy-jp {
    margin-bottom: clamp(50px, 15vh, 120px);
  }

  .sub-copy-en {
    margin-top:0; 
  }

  footer {
display: flex;
justify-content: center;
  }

  .footer-policy {
    margin-right: 10px;
    margin-bottom: 20px;
  }


  /* globalnav */
  .globalnav {
    height: 140px;
  }
  .co_area {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.2em;
    color: #fff;
    width: 100%;
    margin: 20px auto 70px;
  }

  .inner.company{
    margin-top: 0;
    margin-bottom: 60px;
    margin-left: calc(30% - 220px);
  }

  .co_title {
    font-size: 40px;
    margin-bottom: 100px;
  }
  .co_title:before {
    width: 128px;
  }
  .co_set_title {
    width: 220px;
  }
  .co_set_text {
    line-height: 35px;
    font-size: 14px;
    padding-left: 40px;
    width: calc(95% - 220px);
    float: left;
    padding-bottom: 22px;
  }

    /*ーーーーーーーーーー
MESSAGE
ーーーーーーーーーーー*/

.main-copy-message {
  font-size: 16px;
  margin-bottom: 0px;
  flex-basis: 50%;
  margin-right: 5%;
  align-self: center;
  line-height: 2.5;
}

.massage-flex {
  flex-flow:row;
  margin-bottom: 200px;
}

.main-copy-image {
  }

.main-copy-image img {
  width: 100%;
  }
}
