@charset "UTF-8";

/* 
==================================================================
    PC
==================================================================
*/

* {
  margin: 0;
  padding: 0;
  /* outline: 2px red solid; */
}

:root{
  --color01: #534741;
}

:root {
  --color02: #918071;
}


html {
  font-size: 16px;
  font-family: 'Sawarabi Mincho', serif; 
  color: var(--color01); 
}

a {
  text-decoration: none;
  color: var(--color01);
}

body {
  max-width: 100%;
  background-image: url(../images/Servicecontents.png);
  background-position: right;
  background-repeat: repeat-y;
  animation: loop01 25s linear infinite;
}

@keyframes loop01 {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 100% -1800px;
  }
}

.wrapper {
  max-width: 100%;
  background-image: url(../images/Servicecontents.png);
  background-position: right;
  background-repeat: repeat-y;
  animation: loop02 25s linear infinite;
}

@keyframes loop02 {
  from {
    background-position: 91% 0;
  }
  to {
    background-position: 91% 1800px;
  }
}

/* レスポンシブ note pc 1260px */
@media screen and ( max-width:1260px ) {
body {
  background-size: 10%;
}
.wrapper {
  background-size: 10%;
}
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
@keyframes loop02 {
  from {
    background-position: 89% 0;
  }
  to {
    background-position: 89% 1800px;
  }
}
}

/* レスポンシブ  768px */
@media screen and ( max-width:768px ) {
html {
  font-size: 14px;
}
}


.target {
	opacity: 0;
	transition: 1s;
	transform: translateY(2rem);
}

.target.is-active {
	opacity: 1;
	transform: translateX(0);
}


/* 
-------
header start
-------
*/

header .hamburger,
header .globalMenuSp {
  display: none;
}

header {
  height: 6.25rem;
  background-color: #FFF;
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
}

.header_img img {
  height: 40px;
  margin-top: 1.8rem;
}

header .gnav {
  text-align: center;
  font-size: 1.1rem;
  padding-top: 1.3rem;
}

header .gnav ul {
  display: flex;
  justify-content: center;
}

header .gnav ul ul {
  display: block;
}

header .gnav ul li {
  position: relative;
}

/* ２階層目を持つliに矢印を設定する */
header .gnav ul li.parent::before {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 1.6rem;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--color02);
  border-right: 2px solid var(--color02);
  transform: rotate(135deg);
}

header .gnav li.parent ul {
  position: absolute;
  left: 0;
  top: 64px;
  z-index: 4;
  background-color: #fff;
  width: 14rem;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

/* メニューリンクの設定 */
header .gnav ul li a {
  display: block;
  padding: 1rem 1.5rem 1rem 1rem;
  transition: all 0.3s; /* アニメーションの動きの速度 */
}

header .gnav ul li li a {
  padding: 10px 35px;
}

header .gnav ul li a:hover {
  color: #352f2c;
}

/* hoverしたら表示する */
header .gnav li.parent:hover > ul,
header .gnav li.parent ul li:hover > ul,
header .gnav li.parent:active > ul,
header .gnav li.parent ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/* 下層メニューのaタグのデザイン */
header .gnav li.parent ul li a {
  border-bottom: solid 1px #ddcfc3;
}

header .gnav li.parent ul li:last-child > a {
  border-bottom: none;
}

header .gnav li.parent ul li a:hover,
header .gnav li.parent ul li a:active {
  background-color: #ddcfc3;
}

.gnav {
  position: relative; /*アンダーラインの位置を決めるための基準 */
}

.navitem::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: var(--color01);
  bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}

.navitem:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

.gnav_list .btn-sm,
.gnav_list a.btn-sm,
.btn-co .btn-sm,
.btn-co a.btn-sm {
  padding: 1rem 3rem;
  color: #fff;
  text-align: center;
  background: var(--color02);
  transition: all 0.3s ease 0s;
  margin-left: 1rem;
}

.gnav_list .btn-sm:hover,
.gnav_list a.btn-sm:hover,
.btn-co .btn-sm:hover,
.btn-co a.btn-sm:hover {
	box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.25);
  color:#fff;
	transform: translateY(-0.2em);
}

.gnav_list a.btn-radius,
.btn-co a.btn-radius {
  border-radius: 100vh;
}

.up {
  transition: all 0.3s ease 0s;
}

.up:hover{
	transform: translateY(-0.2em);
}



/* レスポンシブ note pc 1260px */
@media screen and ( max-width:1260px ) {
header .gnav {
  display: none;
}
header .hamburger,
header .globalMenuSp {
  display: block;
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 2rem;
  top   : 2rem;
  width : 3rem;
  height: 3rem;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 2rem;
  height  : 2px ;
  left    : 6px;
  background : var(--color01);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}


/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba( 121,127,96,0.9 );
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
}

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;
  border-bottom: solid 1px #9d9e90;
}
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;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}

header .globalMenuSp li.parent ul {
  position: absolute;
  z-index: 4;
  background: rgba( 121,127,96,0.9 );
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

/* メニューリンクの設定 */
header .globalMenuSp ul li a {
  display: block;
  padding: 1rem 1.5rem 1rem 1rem;
  transition: all 0.3s; /* アニメーションの動きの速度 */
}

header .globalMenuSp ul li li a {
  padding: 10px 35px;
}

header .globalMenuSp ul li a:hover {
  color: #352f2c;
}

/* hoverしたら表示する */
header .globalMenuSp li.parent:hover > ul,
header .globalMenuSp li.parent ul li:hover > ul,
header .globalMenuSp li.parent:active > ul,
header .globalMenuSp li.parent ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/* 下層メニューのaタグのデザイン */
header .globalMenuSp li.parent ul li a {
  border-bottom: solid 1px #9d9e90;
}

header .globalMenuSp li.parent ul li:last-child > a {
  border-bottom: none;
}

header .globalMenuSp li.parent ul li a:hover,
header .globalMenuSp li.parent ul li a:active {
  background :#ddd;
}

.drawer_menu .drawer_button {
	color: #fff;
}

/* ハンバーガーメニュー三本線の色 */
.drawer_menu .drawer_button .drawer_bar {
	background-color: #fff;
}
}

/* レスポンシブ  768px */
@media screen and ( max-width:768px ) {
header {
  height: 4.410rem;
}
.header_img img {
  height: 30px;
  margin-top: 1.2rem;
}
.hamburger {
  right : 1.5rem;
  top   : 0.8rem;
  width : 3rem;
  height: 3rem;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.header_img img {
  height: 25px;
  margin-top: 1.4rem;
}

}

/* 
-------
main start
-------
*/

/* mv */

.mv {
  position: absolute;
  z-index: 4;
  width: 100%;
}

.slider {
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  margin: 0 auto;
}

.slick-img img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.slider-mo {
  display: none;
}

.mv p {
  width: 0;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 3.5rem;
  font-weight: 100;
  position: absolute;/*絶対配置*/
  color: #FFF;/*文字は白に*/
  text-shadow: 2px 2px 3px var(--color01); 
  top: 17%;
  left: 9%;
  white-space: nowrap;
  overflow: hidden;
  animation: flowing-anim 2.5s forwards linear;
  animation-delay: 3s;
  }

  @keyframes flowing-anim {
    0% {
      width: 0%;
      }
    100% {
      width: 50%;
      }
  }


  /* レスポンシブ note pc 1260px */
@media screen and ( max-width:1260px ) {
.mv p {
  font-size: 2.5rem;
  top: 13%;
  left: 12%;
}
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
.mv p {
  font-size: 2.5rem;
  top: 8%;
  left: 12%;
}
}

/* レスポンシブ  600px */
@media screen and ( max-width:600px ) {
.mv p {
  font-size: 2rem;
  top: 6%;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.slider {
  display: none;
}
.slider-mo {
  display: block;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  margin: 0 auto;
}
.mv p {
  writing-mode: vertical-rl;
  font-size: 3.5rem;
  top: 10%;
  left: 0%;
  animation-duration: 1s;
}
@keyframes flowing-anim {
  0% {
    width: 0%;
    }
  100% {
    width: 33%;
    }
}
}

/* sc01 */

.sc01 {
  padding: 62% 1rem 0 1rem;
  text-align: center;
  background-color: #FFFCFA;
  background-image: url(../images/sc02.png);
  background-size: 40%;
  background-position: right bottom;
}

.sc01_h2 {
  position: relative;
  color: #EAE6E4;
  font-family: 'Allura', cursive;
  font-size: 4.5rem;
  font-weight: lighter;
  text-align: center;
}

.sc01_h2::before {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.25rem;
  color: var(--color01);
  content: 'm!lky designについて';
  font-family: 'Sawarabi Mincho', serif; 
  font-weight: bold;
}

.sc01_txt {
  text-align: left;
  display: inline-block;
}

.sc01 p {
  width: 60%;
  font-size: 1.4rem;
  padding: 4rem 0 10rem 0;
  margin: 0 auto;
  line-height: 3;
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
.sc01 p {
  width: 80%;
  font-size: 1.1rem;
  line-height: 2.2;
}
}

/* レスポンシブ  768px */
@media screen and ( max-width:768px ) {
.sc01_h2 {
  font-size: 3.5rem;
}
.sc01_h2::before {
  top: 22px;
  font-size: 1.8rem;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.sc01 {
  padding: 206% 1rem 0 1rem;
  background-size: 60%;
}
.sc01_h2 {
  font-size: 2.8rem;
}
.sc01_h2::before {
  top: 22px;
  font-size: 1.15rem;
}
.sc01 p {
  padding: 8% 0 12% ;
  line-height: 1.8;
}
}

/* sc02 */

.sc02 {
  height: 100rem;
  padding: 8rem 0;
}

.sc02_h2 {
  position: relative;
  margin-bottom: 0.2rem;
  font-size: 2.25rem;
  text-align: center;
  padding-bottom: 7rem;
}

.sc02_h2::before {
  position: absolute;
  top: -35px;
  left: 49%;
  transform: translateX(-50%);
  color: #EAE6E4;
  font-size: 4.5rem;
  text-transform: uppercase;
  content: 'service';
  font-family: 'Allura', cursive;
  font-weight: lighter;
  z-index: -1;
}

.sc02 img {
  max-width: 80%;
}

.fadein {
  position: relative;
  opacity : 0;
  transition : all 2s;
  overflow:hidden;
}
  
.fadein.active{
  opacity : 1;
}

.fadein img:hover {
  transform:scale(1.2,1.2);
  transition:1s all;
}

.sc02_txt {
  position: absolute;/*絶対配置*/
  color: #FFF;/*文字は白に*/
  text-shadow: 2px 2px 3px var(--color01); 
  top: 70%;
  left: 5%;
  font-size: 2.4rem;
}


/* レスポンシブ note pc 1260px */
@media screen and ( max-width:1260px ) {
.sc02 {
  height: 93%;
}
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
.sc02 {
  height: 75%;
}
.sc02 img {
  max-width: 70%;
}
.sc02_txt {
  top: 65%;
  left: 5%;
  font-size: 2rem;
}
}

/* レスポンシブ  768px */
@media screen and ( max-width:768px ) {
.sc02 {
  height: 60%;
  padding: 4rem 0;
}
.sc02_h2 {
  font-size: 1.8rem;
  padding-bottom: 4rem;
}
.sc02_h2::before {
  top: -25px;
  font-size: 3.5rem;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.sc02_h2 {
  font-size: 1.2rem;
  padding-bottom: 2rem;
}
.sc02_h2::before {
  font-size: 2.8rem;
}
.sc02 img {
  max-width: 85%;
}
.sc02_txt {
  top: 60%;
  left: 5%;
  font-size: 1.3rem;
}
}

/* sc03 */

.sc03 {
  padding: 7rem 3rem;
  background-color: #FFFCFA;
}

.sc03_h2 {
  position: relative;
  color: #EAE6E4;
  font-family: 'Allura', cursive;
  font-size: 4.5rem;
  font-weight: lighter;
  text-align: center;
  padding-bottom: 7rem;
}

.sc03_h2::before {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.25rem;
  text-transform: uppercase;
  color: var(--color01);
  content: 'お知らせ';
  font-family: 'Sawarabi Mincho', serif; 
  font-weight: bold;
}

.news {
  max-width: 600px;
  margin: 0 auto;
}

.date {
  color: #797F60;
  font-weight: bold;
}

a.item {
  display: flex;
  padding: 0 3rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color02);
  box-sizing: border-box;
  width: 100%;
  height: 5rem;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}

a.item:hover {
  background: #EAE6E4;
}

a.item:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 50px;
  border-color: transparent transparent var(--color02) transparent;
}

a.item .arrow {
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: inline-block;
}

a.item .arrow:before {
    content: '';
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
}

a.item .arrow:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: 2px solid var(--color02);
    border-right: 2px solid var(--color02);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 4px;
    margin-top: -3px;
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
.news {
  max-width: 450px;
}
a.item {
  font-size: 0.9rem;
}
}

/* レスポンシブ  768px */
@media screen and ( max-width:768px ) {
.sc03_h2 {
  font-size: 3.5rem;
}
.sc03_h2::before {
  top: 25px;
  font-size: 1.8rem;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.sc03 {
  padding: 3rem 3rem;
}
.sc03_h2 {
  font-size: 2.8rem;
  padding-bottom: 2rem;
}
.sc03_h2::before {
  font-size: 1.2rem;
}
}

/* footernav */

.footernav {
  padding: 6rem 15rem 5rem 15rem;
  background-color: #D9DEC3;
  display: flex;
  justify-content: center;
  gap: 5%;
}

.footernav_h2 {
  margin-bottom: 0.5rem;
}

.footernav_h2 img {
  height: 2rem;
}

.add,
.mail {
  font-size: 0.875rem;
  padding-left: 4rem;
}

.add::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image:url(../images/add.png);
  background-size: contain;
  vertical-align: middle;
}

.mail::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image:url(../images/mail.png);
  background-size: contain;
  vertical-align: middle;
  margin: 0 0.5rem 0 -0.25rem;
}

.links,
.follow {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  width: 10rem;
}

.footernav nav {
  line-height: 2;
}

.footernav a {
  position: relative; /*アンダーラインの位置を決めるための基準 */
}

.footernav a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: var(--color01);
bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
transition: transform 0.3s; /*変形の時間*/
}

a:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
.footernav {
  flex-direction: column;
}
.add,
.mail {
padding-left: 0.5rem;
}
.links,
.follow {
  font-size: 1.1rem;
  margin: 1.5rem 0 0 0;
}
}

/* レスポンシブ  768px */
@media screen and ( max-width:768px ) {
.footernav {
  padding: 4rem 0 3rem 0;
  align-items: center;
}
.footernav_ce,
.footernav_ri {
  width: 16rem;
}
}

/* 
-------
footer start
-------
*/

footer {
  height: 4.5rem;
  background-color: #D9DEC3;
  text-align: center;
  font-weight: 100;
  padding-top: 1.5rem;
}

footer .ptop {
  width: 4rem;
  position: fixed;
  right: 3rem;
  bottom: 1rem;
  cursor: pointer;
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
footer {
  height: 3rem;
  padding-top: 0;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
footer {
  font-size: 0.5rem;
}
footer .ptop {
  width: 3rem;
  right: 1rem;
  bottom: 1rem;
}
}


/* -------------------------------------------------policy------------------------------------------------------ */

.policy_bk {
  background-color: #FFF;
  background-image: url(../images/milky_l.png);
  background-position: left;
  background-repeat: repeat-y;
  animation: loop03 50s linear infinite;
}

@keyframes loop03 {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 0% 1800px;
  }
}

.policy_contents {
  padding-bottom: 7rem;
  background-image: url(../images/milky_r.png);
  background-position: right;
  background-repeat: repeat-y;
  animation: loop04 50s linear infinite;
}

@keyframes loop04 {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 100% -1800px;
  }
}

.contents_top {
  position: relative;
}

.contents_top img {
  width: 100%;
}

.page_title {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 40%;
  transform: translate(-50%,-50%);
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 3px 3px 5px #222; 
  animation: pagefadein 2s 1;
}

.page_subtitle {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%,-50%);
  font-size: 1.625rem;
  color: #fff;
  text-shadow: 3px 3px 5px #222;
  animation: pagefadein 2s 1;
}

@keyframes pagefadein {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.policy_chart {
  text-align: center;
  animation-name:zoomInAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  }

  to {
      transform: scale(1);
  }
}

.policy_chart img {
  width: 30%;
  margin: 5rem 0 2rem 0;
}

.ex_01,
.ex_02,
.ex_03 {
  display: block;
  position: relative;
  margin: 3rem auto;
  padding: 10px 0;
  width: 60%;
  background: #F7F4F2;
}

.ex_dt {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  padding: 0.625rem 0.625rem 1rem 0.625rem;
  line-height: 1.5;
  margin: 0 0 0 -20px;
  width: calc(100% + 20px);
  font-size: 1.5rem;
  font-weight:600;
  background: #D9DEC3;
}

.ex_dt:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px #797F60;
}

.ex_num {
  font-family: 'Abril Fatface', cursive;
  font-size: 2.1rem;
  line-height: 1.3;
  padding: 0 1.5rem;
}

.ex_dd {
  width: 85%;
  font-size: 1.1rem;
  margin: 2rem auto;
  line-height: 2;
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
.page_title {
  font-size: 2rem;
}
.page_subtitle {
  font-size: 1.2rem;
}
.policy_bk {
  background-size: 10%;
}  
.policy_contents {
  background-size: 10%;
}
.policy_chart img {
  width: 45%;
}
.ex_01,
.ex_02,
.ex_03 {
  width: 70%;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.page_title {
  font-size: 1.3rem;
  top: 35%;
}
.page_subtitle {
  font-size: 0.85rem;
  top: 70%;
}

.policy_contents {
  padding-bottom: 3rem;
}
.policy_chart img {
  width: 50%;
  margin: 3rem 0 1rem 0;
}
.policy_ex {
  margin-left: 1.5rem;
}
.ex_01,
.ex_02,
.ex_03 {
  width: 90%;
  margin: 1rem auto;
}
.ex_dt {
  padding: 0.5rem 0.5rem 0.8rem 0.5rem;
  line-height: 1;
  margin: 0 0 0 -20px;
  width: calc(100% + 20px);
  font-size: 1.2rem;
  background: #D9DEC3;
}
.ex_num {
  font-size: 1.7rem;
  line-height: 1.2;
}
.ex_dd {
  width: 85%;
  font-size: 0.95rem;
  margin: 1rem auto 1rem auto;
}
}


/* -------------------------------------------------service------------------------------------------------------ */

.service_contents {
  background-color: #FFF;
  padding-bottom: 5rem;
}

.service_list {
  margin: 7rem 5%;
}

.service_list img {
  width: 100%;
}

.card,
.logo,
.flier,
.img,
.lp {
  display: flex;
  justify-content: space-around;
}

.list_l,
.list_r {
  width: 50%;
  padding: 5% 2%;
}

.service_title {
  font-size: 2.5rem;
  padding-top: 8%;
}

.service_ex {
  font-size: 1.25rem;
  margin: 4% 0 6% 0;
}

.lp_page {
  text-align: center;
  font-size: 1.410rem;
}

/*== 矢印の線がループして伸縮 */

.btnlinestret{
  /*線の基点とするためrelativeを指定*/
position:relative;
  /*リンクの形状*/ 
color:var(--color01);
  padding: 10px 0;
display:inline-block;
  text-decoration: none;
  outline: none;
}

/*線の設定*/
.btnlinestret::before {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: var(--color01);
}

/*矢印の設定*/
.btnlinestret::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom:-4px;
  /*矢印の形状*/
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color01);
  border-right: 1px solid var(--color01);
  transform: rotate(45deg);
}

/*線と矢印を繰り返しアニメーション*/
.btnlinestret::before {
  animation: arrowlong01 2s ease infinite;
}
.btnlinestret::after {
  animation: arrowlong02 2s ease infinite;
}

@keyframes arrowlong01{
  0%{width:0;opacity:0}
  20%{width:0;opacity:1}
  80%{width:105%;opacity:1}
  100%{width:105%;opacity:0}
}

@keyframes arrowlong02{
  0%{left:0;opacity:0}
  20%{left:0;opacity:1}
  80%{left:103%;opacity:1}
  100%{left:103%;opacity:0}
}


.button-a,
.button-b,
.button-c {
  text-align: center;
}

.button-a div,
.button-b div,
.button-c div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: translateY(7px);
  width: 150px;
  margin: 0 auto;
  padding: .2em 0;
  border: 2px solid #797f60;
  border-radius: 10px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .2));
  background-color: #fff;
  color: #797f60;
  font-size: .8em;
}

.button-a div::before,
.button-a div::after,
.button-b div::before,
.button-b div::after,
.button-c div::before,
.button-c div::after {
  position: absolute;
  top: 100%;
  content: '';
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}


.button-a div::before,
.button-b div::before,
.button-c div::before {
  width: 16px;
  height: 8px;
  background-color: #797f60;
}

.button-a div::after,
.button-b div::after,
.button-c div::after {
  width: 12px;
  height: 6px;
  background-color: #fff;
}

.button-a button,
.button-b button,
.button-c button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  background-color: #797f60;
  color: #fff;
  font-weight: 500;
  font-size: 1.1em;
}

.button-a button,
.button-b button{
  margin: 0 0.5rem;
}

.button-c button {
  margin: 0 auto;
}


.button-a button::after,
.button-b button::after,
.button-c button::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}

.button-a button:hover,
.button-b button:hover,
.button-c button:hover {
  background-color: #63634e;
}

.button_card {
  display: flex;
  justify-content: space-around;
  margin-top: 5%;
}

/* レスポンシブ note pc 1260px */
@media screen and ( max-width:1260px ) {
.service_contents {
  padding-bottom: 0.1rem;
}
.service_title {
  font-size: 2rem;
}
.service_ex {
  font-size: 1.05rem;
}
.lp_page {
  font-size: 1.1rem;
}
.button-a div,
.button-b div,
.button-c div {
  width: 130px;
  font-size: .7em;
  font-weight: bold;
}
.button-a button,
.button-b button,
.button-c button {
  width: 200px;
  font-size: 1em;
}
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
.service_list img {
  width: 80%;
}
.card,
.flier,
.lp {
  flex-direction: column-reverse;
  align-items: center;
}
.logo,
.img {
  flex-direction: column;
  align-items: center;
}
.list_l,
.list_r {
  width: 70%;
  text-align: center;
  padding: 0;
}
.service_ex {
  display:block;
  text-align: left;
}
.service_list button {
  margin-bottom: 5rem;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.service_list {
  margin: 2rem 5%;
}
.service_title {
  font-size: 1.4rem;
}
.service_ex {
  font-size: 0.95rem;
}
.button_card {
  flex-direction: column;
  align-items: center;
}
.button-a button {
  margin-bottom: 1rem;
}
.button-b button{
  margin-bottom: 3rem;
}
.button-c button{
  margin-bottom: 3rem;
}
}


/* -------------------------------------------------news------------------------------------------------------ */

.news_contents {
  background-color: #fff;
}

.news_pl {
  margin-top: 2.5%;
}

/* -------------------------------------------------contact------------------------------------------------------ */

.contact_contents {
  background-color: #fff;
  padding-bottom: 5rem;
}


#formWrap {
	width:45rem;
	margin:0 auto;
  padding-top: 3rem;
	line-height:120%;
	font-size:90%;
  text-align: center;
  font-size: 1.05rem;
}

table.formTable{
	width:100%;
	margin:2rem auto;
	border-collapse:collapse;
}

table.formTable td,table.formTable th{
	border:1px solid #bcafa6;
	padding:10px;
}

table.formTable th{
	width:30%;
  line-height: 2;
	font-weight:normal;
	background: #ddcfc3;
	text-align:left;
}

table.formTable td{
  text-align: left;
}

table.formTable input,
table.formTable textarea {
	border:1px solid #ddcfc3;
  line-height: 2;
}

.checkbtn {
  text-align: center;
  margin-bottom: 2rem;
}

.checkbtn input {
  padding: 1rem 2rem;
  color: #fff;
  text-align: center;
  border-radius: 100vh;
  font-size: 1.05rem;
}

.checkbtn .check {
  background-color: #797F60;
}

.checkbtn .reset {
  background-color: #9d9e90;
}

table.formTable span {
  color: #aa484f;
  font-weight: bold;
}

.snsicon {
  text-align: center;
  margin-top: 6rem;
  font-size: 1.1rem;
}

.snsicon p {
  margin: 1rem 0;
}

.line {
  color: #ddcfc3;
}

.snsicon img {
  width: 5rem;
  height: 5rem;
  margin: 2rem 1rem;
}


@media screen and (max-width:680px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
.snsicon {
  margin-top: 3rem;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.contact_contents {
  padding-bottom: 3rem;
}
#formWrap {
  font-size: 1rem;
}
.snsicon {
  margin: auto 2rem;
  font-size: 1rem;
}
.snsicon img {
  width: 3.5rem;
  height: 3.5rem;
  margin: 1rem 0.5rem;
}
}


/* -------------------------------------------------support------------------------------------------------------ */

.support_contents {
  background-color: #fff;
}

.support_ex {
  padding: 6rem 8rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.support_in {
  width: 30%;
}

.support_title {
  font-size: 1.5rem;
  margin: 1.8rem 0;
  text-decoration: underline;
}

.support_img {
  margin-bottom: 5rem;
}

/* レスポンシブ note pc 1355px(1260) */
@media screen and ( max-width:1355px ) {
.support_img img {
  width: 40%;
}
.support_title {
  font-size: 1.2rem;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.support_ex {
  padding: 2rem;
  flex-direction: column;
  align-items: center;
}
.support_in {
  width: 45%;
}
.support_img {
  margin-bottom: 2rem;
}
.support_img img {
  width: 50%;
}
.support_title {
  margin: 0.5rem 0;
}
}


/* -------------------------------------------------faq------------------------------------------------------ */

.qa_contents {
  background-color: #fff;
  height: auto;
}

.qa_ex {
  padding: 7rem 3rem;
}

.qa_in {
  text-align: center;
}

.qa_ex dl {
  text-align: left;
  display: inline-block;
  position: relative;
  width: 70%;
  height: auto;
  margin: 3rem 0 0;
  cursor: pointer;
  background-color: #fffcfa;
}

.qa_ex dl:first-child {
  margin-top: 0;
}

.qa_ex dl::after {
  position: absolute;
  top: 27px;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 2px solid var(--color01);
  border-right: 2px solid var(--color01);
}

.qa_ex .ques {
  padding-right: 2rem;
}

.qa_ex .open::after {
  transform: rotate(-45deg);
}
.qa_ex dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  font-weight: bold;
  background: #ddcfc3;
}
.qa_ex dl dt::before {
  font-size: 1.410rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  content: 'Q.';
  color: #63634e;
}
.qa_ex dl dd::before {
  font-size: 1.410rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  content: 'A.';
  font-weight: bold;
  color: #63634e;
}
.qa_ex dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
}
.qa_ex dl dd p {
  margin: 30px 0 0;
}
.qa_ex dl dd p:first-child{
  margin-top: 0;
}
.qa_in a {
  text-decoration: underline;
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.qa_ex {
  padding: 3rem 2rem;
}
.qa_ex dl {
  width: 95%;
  margin: 1.5rem 0 0;
}
.qa_ex dl dt {
  padding: 1rem 1rem 1rem 3.75rem;
}
.qa_ex dl dd {
  padding: 1rem 1rem 1rem 3.75rem;
}
.qa_ex dl dt::before {
  font-size: 1.2rem;
  top: 1.1rem;
  left: 1.1rem;
}
.qa_ex dl dd::before {
  font-size: 1.2rem;
  top: 1.1rem;
  left: 1.1rem;
}
}

/* -------------------------------------------------order------------------------------------------------------ */

.order_contents {
  background-color: #fff;
}

.order_ex p {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 4rem;
}

.flow_design {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 6%;
  padding: 7rem 5rem;
}

.flow_design a {
  text-decoration: underline;
}

.flow_design ul {
  padding: 0;
}

.flow_design li {
  list-style-type: none;
}

.flow_design dd {
  margin-left: 0;
  line-height: 2;
}

.flow_design p {
  margin-top: 1rem;
  line-height: 2;
}


.order_flow {
  position: relative;
}

.order_flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #ddcfc3;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.order_flow > li {
  position: relative;
}

.order_flow > li:not(:last-child) {
  margin-bottom: 60px;
}

.order_flow > li .order_icon {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  border-radius: 100vh;
  color: #fff;
  background: #797f60;
  display: inline-block;
  margin-right: 0.8em;
}

.order_flow > li dl {
  padding-left: 70px;
  position: relative;
}

.order_flow > li dl::before,
.order_flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.order_flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #797f60;
  border-radius: 50%;
  left: -4px;
}

.order_flow > li dl::after {
  width: 50px;
  border-bottom: 1px dashed var(--color01);
  position: absolute;
  left: 5px;
}

.order_flow > li dl dt {
  font-size: 1.3em;
  font-weight: 500;
  color: #797f60;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.order_ex p {
  margin-top: 3rem;
}
.flow_design {
  margin-left: 6%;
  padding: 3rem 2rem;
}
.order_flow > li dl {
  padding-left: 3rem;
}
.order_flow > li dl::after {
  width: 2rem;
}
.order_flow > li dl dt {
  font-size: 1.2rem;
}
}


/* -------------------------------------------------modify cancel copyright------------------------------------------------------ */

.modify_contents,
.cancel_contents,
.copyright_contents {
  background-color: #FFF;
}

.modify_ex,
.cancel_ex {
  padding: 7% 7%;
  display: flex;
  justify-content: space-around;
}

.modify_box01,.modify_box02,.modify_box03,
.cancel_box01,.cancel_box02,.cancel_box03,
.copyright_box01,.copyright_box02,.copyright_box03,
.copyright_box04,.copyright_box05,.copyright_box06 {
	border: 1px solid #797f60;
	border-radius: 10px;
  width: 30%;
	padding: 5rem 2rem 2rem 2rem;
	position: relative;
	z-index: 0;
  line-height: 2;
}

.modify_ex p {
  line-height: 1.7rem;
}

.modify_ex .modify_box01 p {
  line-height: 2.5rem;
}

.modify_box01:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: '修正のタイミング';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.modify_box01:after,.modify_box02:after,.modify_box03:after,
.cancel_box01:after,.cancel_box02:after,.cancel_box03:after,
.copyright_box01:after,.copyright_box02:after,.copyright_box03:after,
.copyright_box04:after,.copyright_box05:after,.copyright_box06:after {
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #797f60 transparent transparent transparent;	/* 吹き出し三角部分の色 */
	content: "";
	position: absolute;
	top: 3rem;
	left: 2rem;
	width: 0px;
	height: 0px;
	z-index: 1;
}

.modify_box02:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: '修正回数';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.modify_box01 small {
  color: #aa484f;
}

.modify_ex ul,
.cancel_ex ul,
.copyright_ex {
  margin: 1rem 0;
}

.modify_ex ul li,
.cancel_ex ul li,
.copyright_ex ul li{
  padding-left: 1.6rem;
	line-height: 1.7rem;
  background: url(../images/points.png) left 0px top 3px no-repeat;
  background-size: 1.1rem auto;
}

.modify_ex .line,
.cancel_ex .line,
.copyright_ex .line {
  text-align: center;
  margin: 0.5rem;
}

.modify_ex h3,
.cancel_ex h3,
.copyright_ex h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.modify_box03:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: '修正料金';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

/* サポートページの問い合わせ部分 */

.support_contact {
  background-color: #fffcfa;
  height: 35rem;
  text-align: center;
  padding: 6rem 7rem;
  font-size: 1.410rem;
  line-height: 1.5;
}

.support_contact p {
  margin: 1rem 0;
}

.co_title {
  font-size: 2.4rem;
}

.btn-co {
  margin-top: 3rem;
}

.support_contact .btn-sm {
  margin: 0;
}

/* ------- */

.cancel_ex span {
  font-size: 0.875rem;
  color: #aa484f;
}

.cancel_box01:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: '無料キャンセル';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.cancel_box02:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: 'ご契約後すぐのキャンセル';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.cancel_box03:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: 'キャンセル料金';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

/* ------- */

.copyright_ex {
  padding: 7rem 7rem 0 7rem;
  display: flex;
  justify-content: space-around;
}

.copyright_bo {
  margin-bottom: 0.7rem;
}

.copyright_contents span {
  font-weight: bold;
}

.for_sub {
  text-align: center;
  text-decoration: underline;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.copyright_box01:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: 'データ納品について';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.copyright_box02:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: 'データ納品形式';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.copyright_box03:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: '制作物の著作権';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.copyright_box04:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: 'データ譲渡料';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.copyright_box05:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: 'ロゴマークの著作権';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.copyright_box06:before {
	background-color: #797f60;	/* タイトル部分背景色 */
	border-radius: 10px 10px 0px 0px;
	color: #fff;	/* タイトル部分文字色 */
  content: '二次利用について';
	height: 3rem;	/* タイトル部分高さ */
	padding: 0.3rem 2rem;
  font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.copyright_contents .support_contact {
  margin-top: 7rem;
}


/* レスポンシブ note pc 1355px(1260) */
@media screen and ( max-width:1355px ) {
  .modify_contents,
  .cancel_contents,
  .copyright_contents {
  margin: 0 auto;
}
.modify_ex,
.cancel_ex,
.copyright_ex {
  flex-direction: column;
  align-items: center;
}
.modify_box01,.modify_box02,.modify_box03,
.cancel_box01,.cancel_box02,.cancel_box03,
.copyright_box01,.copyright_box02,.copyright_box03,
.copyright_box04,.copyright_box05,.copyright_box06 {
  width: 90%;
  margin-bottom: 3rem;
  padding: 5rem 4rem 2rem 4rem;
}
.copyright_ex {
  padding: 0 7%;
  margin: 0;
}
.copyright_box01 {
  margin-top: 5rem;
}
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
.modify_ex,
.cancel_ex {
  padding: 5% 15%;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.modify_ex,
.cancel_ex {
  padding: 7% 3%;
}
.copyright_ex {
  padding: 0 3%;
}
.modify_box01,.modify_box02,.modify_box03,
.cancel_box01,.cancel_box02,.cancel_box03,
.copyright_box01,.copyright_box02,.copyright_box03,
.copyright_box04,.copyright_box05,.copyright_box06 {
  width: 95%;
  margin-bottom: 2rem;
  padding: 5rem 1.5rem 1rem 1.5rem;
}
.support_contact {
  height: 30%;
  padding: 3rem 2rem;
  font-size: 1.1rem;
}
.co_title {
  font-size: 1.8rem;
}
.btn-co{
  margin-top: 2rem;
}
.btn-co .btn-sm,
.btn-co a.btn-sm {
  padding: 1rem 2rem;
}
.copyright_box01 {
  margin-top: 2rem;
}
.copyright_contents .support_contact {
  margin-top: 0;
}
}

/* -------------------------------------------------copyrightsub privacypolicy------------------------------------------------------ */

.copyrightsub_contents,
.privacypolicy_contents {
  background-color: #FFF;
}

.copyrightsub_ex,
.privacypolicy_ex {
  padding: 0 20% 7rem 20%;
}

.copyrightsub_ex dt {
  font-size: 1.4rem;
  font-weight: bold;
  padding-left: 2.5rem;
	line-height: 1.7rem;
  background: url(../images/pls.png) left 0px top 2px no-repeat;
  background-size: 1.5rem auto;
  margin-top: 8rem;
}

.copyrightsub_ex dd {
  margin: 1rem 0;
  padding-left: 2.5rem;
  font-size: 1.1rem;
}

.privacypolicy_ex p {
  margin: 6rem 0 1rem 0;
  font-size: 1.1rem;
}

.privacypolicy_ex dt {
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 1px solid #9d9e90;
  border-left: 10px solid #9d9e90;
  padding: 10px;
	line-height: 1.7rem;
  background-size: 1.5rem auto;
  margin-top: 6rem;
}

.privacypolicy_ex dd {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.privacypolicy_ex ol {
  list-style-type: decimal;
  font-size: 1.1rem;
  padding-left: 3rem;
}

/* レスポンシブ  950px */
@media screen and ( max-width:950px ) {
.copyrightsub_ex dt {
  margin-top: 4rem;
}
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.copyrightsub_ex,
.privacypolicy_ex {
  padding: 0 2.5rem 2.5rem 2rem;
}
.copyrightsub_ex dt,
.privacypolicy_ex dt {
  font-size: 1.2rem;
  margin-top: 3rem;
}
.copyrightsub_ex dt {
  padding-left: 2rem;
  line-height: 1.6rem;
  background-size: 1.3rem auto;
}
.copyrightsub_ex dd,
.privacypolicy_ex dd {
  font-size: 1rem;
  margin: 0.5rem 0;
  line-height: 1.7;
}
.copyrightsub_ex dd {
  padding-left: 2.2rem;
}
.privacypolicy_ex p {
  margin: 3rem 0 1rem 0;
  font-size: 1rem;
}
.privacypolicy_ex ol {
  font-size: 1rem;
  padding-left: 2rem;
}
}

/* -------------------------------------------------thanks------------------------------------------------------ */

.thanks_contents {
  text-align: center;
  background-color: #fff;
  padding-bottom: 8rem;
}

.thanks_contents h2 {
  margin: 2rem 0;
}

.thanks_end {
  margin-top: 6rem;
  text-decoration:underline;
}


/* -------------------------------------------------news01------------------------------------------------------ */

.news_ex {
  text-align: center;
  padding: 5rem 0 8rem 0;
}
.news_date {
  margin: 0 4rem;
  color: #9d9e90;
  margin-bottom: 1.5rem;
}

.news_txt {
  display: inline-block;
  text-align: left;
  margin: 3rem 4rem;
  line-height: 2;
}

/* レスポンシブ  428px */
@media screen and ( max-width:428px ) {
.news_ex {
  padding: 3rem 0;
}
.news_ex h2 {
  font-size: 1.2rem;
}
.news_txt {
  font-size: 0.95rem;
}
}
