@charset "UTF-8";
/* CSS Document */

/* 定義 */
:root{
  --white: var(--color-brand-white);
  --primary: var(--color-brand-primary);
  --secondary: var(--color-accent-1);
  --black: var(--color-brand-black);
  --gray:var(--color-neutral-600);
  --lightteal:var(--color-neutral-lightteal);
  --lightbeige: var(--color-neutral-sand);
  --lightgray: #f8f8f8;
  --border-gray:#cfd4d8;
  --text_size29: 2.9rem;
  --text_size28: 2.8rem;
  --text_size27: 2.7rem;
  --text_size26: 2.6rem;
  --text_size25: 2.5rem; 
  --text_size24: 2.4rem;
  --text_size23: 2.3rem;
  --text_size22: 2.2rem;
  --text_size21: 2.1rem;
  --text_size20: 2rem;
  --text_size19: 1.9rem;
  --text_size18: 1.8rem;
  --text_size17: 1.7rem;
  --text_size16: 1.6rem;
  --text_size15: 1.5rem; 
  --text_size14: 1.4rem;
  --text_size13: 1.3rem;
  --text_size12: 1.2rem;
  --text_300: 300;
  --text_400: 400;
  --text_500: 500;
  --text_700: 700;
  --text_900: 900;
  --text_heightL: 1.8;
  --text_heightM: 1.6;
  --text_heightS: 1.5;
  --text_center:center;
  --text_left:left;
  --text_right:right;
}


.text_bold{
  font-weight: var(--text_700);
}

.text_underline{
  text-decoration: underline;
}


@media screen and (max-width: 767px){
  a[id] {
    position: relative;
    display: block;
    height: 72px;          /* ヘッダー高さ */
    margin-top: -72px;     /* 相殺して実レイアウトは崩さない */
    pointer-events: none;
  }

}

body{
  min-width: auto;
  background-color: var(--lightgray);
}


/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.pcOnly {
  display: block;
}
.spView {
  display: none;
}
.spOnly {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .pcOnly {
    display: none;
  }
  .spView {
    display: block;
  }
  .spOnly {
    display: block;
  }
}

h1, h2, h3, h4, h5, h6 {
   text-transform: none; 
}

.media_wrapper{
  padding: 100px 10px 70px;
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}

.media_contents{
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}

h1.media_title{
  color: var(--color-brand-black);
  line-height: var(--text_heightM);
  font-weight: var(--text_400);
  font-size:2.5rem;
}

.main_column{
  background-color: var(--color-brand-white);
  padding: 20px;
  border: 1px solid var(--border-gray);
  width: 70%;
}

.main_head{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.head_type{
  text-align: var(--text_left);
  line-height: var(--text_heightM);
  color: var(--color-brand-black);
  font-size: var(--text_size16);
  font-weight: var(--text_300);
}

.head_logo{
  text-align: var(--text_left);
  line-height: var(--text_heightM);
  color: var(--color-brand-black);
  font-size: var(--text_size14);
  font-weight: var(--text_300);
}

.head_logo img{
  margin: 0 0 10px;
  display: block;
  width: 110px;
}

.title_block{

}

.main_title{
  text-align: var(--text_center);
  line-height: var(--text_heightM);
  color: var(--color-brand-black);
  font-size: var(--text_size18);
  font-weight: var(--text_400);
  margin: 30px 0 10px;
}

.sub_title{
  text-align: var(--text_center);
  line-height: var(--text_heightM);
  color: var(--color-brand-black);
  font-size: var(--text_size16);
  font-weight: var(--text_400);
  margin: 10px 0;
}

.article_block{
  margin: 20px 0;
}

.article_block p{
  margin: 15px 0 15px;
  padding: 0;
  font-size: var(--text_size14);
  line-height: var(--text_heightM);
  color: var(--color-brand-black);
}

.image_wide{
  width: 90%;
  display: block;
  margin: 30px auto;
  text-align: var(--text_center);
}

.text_link{
  color: var(--color-accent-3);
  word-wrap: break-word;
  font-weight: var(--text_500);
}

.font_bold{
  font-weight: var(--text_700);
}

.caption{
  font-weight: var(--text_700);
  font-size: var(--text_size15);
  display: block;
  margin: 15px 0 0;
}

.text_link:hover{
  text-decoration: underline;
}


/* リスト */
.list_normal{
  margin: 15px 0 0;
  padding: 0;
}

.list_normal li{
  margin: 0;
  padding: 0 0 10px 1em;
  font-size: var(--text_size14);
  color: var(--color-brand-black);
  list-style: none;
  line-height: var(--text_heightM);
  text-indent: -1.2em;
}

.list_normal li::before{
  content: " ・ ";
  color: var(--color-brand-black);
}

.list_normal li a{

}

.list_normal li a:hover{

}


/* 2カラム */
.list_column2{
  display: flex;
  gap: 2%;
}

.list_item{
  margin: 15px 0 0;
  padding: 0;
  width: 49%;
}

.list_item li{
  margin: 0;
  padding: 0 0 10px 1em;
  font-size: var(--text_size14);
  color: var(--color-brand-black);
  list-style: none;
  line-height: var(--text_heightM);
  text-indent: -1.2em;
}

.list_item li::before{
  content: " ・ ";
  color: var(--color-brand-black);
}

.list_item li a{

}

.list_item li a:hover{

}

.description_list{
  margin: 15px 0 0;
  padding: 0;
}

.description_list dt{
  padding: 10px;
  background-color: #F3F3F3;
  font-size: var(--text_size14);
  color: var(--color-brand-black);
  line-height: var(--text_heightM);
  font-weight: var(--text_700);
}

.description_list dd{
  padding: 10px;
  font-size: var(--text_size14);
  color: var(--color-brand-black);
  line-height: var(--text_heightM);
	font-weight: var(--text_300);
}

/* フッター */
.common_footer{
  margin: 50px 0 0;
}

.footer_text{
  font-size: var(--text_size12);
  font-weight: var(--text_300);
  line-height: var(--text_heightM);
  color: var(--color-brand-black);
}

.footer_title{
  font-size: var(--text_size12);
  font-weight: var(--text_500);
  text-decoration: underline;
  display: block;
}

.footer_textlink{
  color: var(--color-brand-primary);
  word-wrap: break-word;
  font-weight: var(--text_500);
}

.footer_textlink:hover{
  text-decoration: underline;
}

.text_fb:before {
  position: relative;
  top: 5px; 
  margin: 0 10px 0 0; 
  width: 25px;
  content: url(/media/img/soc-fb-25.png);
}
.text_insta:before {
  position: relative;
  top: 5px; 
  margin: 0 10px 0 0; 
  width: 25px;
  content: url(/media/img/soc-ig-25.png);
}
.text_tw:before {
  position: relative;
  top: 5px; 
  margin: 0 10px 0 0; 
  width: 25px;
  content: url(/media/img/soc-tw-25.png);
}

.sub_column{
  background-color: var(--color-brand-white);
  padding: 20px;
  border: 1px solid var(--border-gray);
  width: 30%;
  height: fit-content;
}

.sub_first{
  font-size: var(--text_size14);
  font-weight: var(--text_500);
  line-height: var(--text_heightM);
  color: var(--color-brand-black);
  text-align: var(--text_center);
}

.sub_text{
  font-size: var(--text_size14);
  font-weight: var(--text_300);
  line-height: var(--text_heightM);
  color: var(--color-brand-black);
  text-align: var(--text_center);
  margin: 20px 0;
}

.sub_contact{
  font-size: var(--text_size14);
  font-weight: var(--text_300);
  line-height: var(--text_heightM);
  color: var(--color-brand-black);
  text-align: var(--text_center);
}

.sub_contact a{
  color: var(--color-brand-black);
  word-wrap: break-word;
  font-weight: var(--text_500);
}

.sub_contact a:hover{
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {

	.caption{
		font-weight: var(--text_700);
		font-size: var(--text_size16);
		display: block;
		margin: 15px 0 0;
	}
  
  .media_wrapper{
    padding: 100px 10px 70px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
  }

  .media_contents{
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
  }

  h1.media_title{
    color: var(--color-brand-black);
    line-height: var(--text_heightM);
    font-weight: var(--text_400);
    font-size:2.5rem;
    margin: 30px 0 15px;
  }

  .main_column{
    background-color: var(--color-brand-white);
    padding: 20px;
    border: 1px solid var(--border-gray);
    width: 100%;
  }

  .main_head{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .head_type{
    text-align: var(--text_left);
    line-height: var(--text_heightM);
    color: var(--color-brand-black);
    font-size: var(--text_size16);
    font-weight: var(--text_300);
  }

  .head_logo{
    text-align: var(--text_center);
    line-height: var(--text_heightM);
    color: var(--color-brand-black);
    font-size: var(--text_size16);
    font-weight: var(--text_300);
  }

  .head_logo img{
    display: block;
    margin:  20px auto 10px;
  }

  .title_block{

  }

  .main_title{
    text-align: var(--text_center);
    line-height: var(--text_heightM);
    color: var(--color-brand-black);
    font-size: var(--text_size18);
    font-weight: var(--text_400);
    margin: 30px 0 10px;
  }

  .sub_title{
    text-align: var(--text_center);
    line-height: var(--text_heightM);
    color: var(--color-brand-black);
    font-size: var(--text_size17);
    font-weight: var(--text_400);
    margin: 10px 0;
  }

  .article_block{
    margin: 20px 0;
  }

  .article_block p{
    margin: 15px 0 15px;
    padding: 0;
    font-size: var(--text_size16);
    line-height: var(--text_heightM);
    color: var(--color-brand-black);
  }

  .image_wide{
    width: 90%;
    display: block;
    margin: 30px auto;
    text-align: var(--text_center);
  }

  .text_link{
    color: var(--color-accent-3);
    word-wrap: break-word;
    font-weight: var(--text_500);
  }

  .text_link:hover{
    text-decoration: underline;
  }


  .list_normal{
    margin: 0;
    padding: 0;
  }

  .list_normal li{
    margin: 0;
    padding: 0 0 10px 1em;
    font-size: var(--text_size16);
    color: var(--color-brand-black);
    list-style: none;
    line-height: var(--text_heightM);
    text-indent: -1.2em;
  }

  .list_normal li::before{
    content: " ・ ";
    color: var(--color-brand-black);
  }

  .list_normal li a{

  }

  .list_normal li a:hover{

  }


  /* 2カラム */
  .list_column2{
    display: flex;
    flex-direction: column;
    gap: 2%;
  }

  .list_item{
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .list_item li{
    margin: 0;
    padding: 0 0 10px 1em;
    font-size: var(--text_size16);
    color: var(--color-brand-black);
    list-style: none;
    line-height: var(--text_heightM);
    text-indent: -1.2em;
  }

  .list_item li::before{
    content: " ・ ";
    color: var(--color-brand-black);
  }

  .list_item li a{

  }

  .list_item li a:hover{

  }



	.description_list{
		margin: 15px 0 0;
		padding: 0;
	}

	.description_list dt{
		padding: 10px;
		background-color: #F3F3F3;
		font-size: var(--text_size16);
		color: var(--color-brand-black);
		line-height: var(--text_heightM);
		font-weight: var(--text_700);
	}

	.description_list dd{
		padding: 10px;
		font-size: var(--text_size16);
		color: var(--color-brand-black);
		line-height: var(--text_heightM);
		font-weight: var(--text_300);
	}



  .common_footer{
		margin: 50px 0 0;
  }

  .footer_text{
    font-size: var(--text_size13);
    font-weight: var(--text_300);
    line-height: var(--text_heightM);
    color: var(--color-brand-black);
  }

  .footer_title{
    font-size: var(--text_size13);
    font-weight: var(--text_500);
    text-decoration: underline;
    display: block;
  }

  .footer_textlink{
    color: var(--color-brand-primary);
    word-wrap: break-word;
    font-weight: var(--text_500);
  }

  .footer_textlink:hover{
    text-decoration: underline;
  }

  .sub_column{
    background-color: var(--color-brand-white);
    padding: 20px;
    border: 1px solid var(--border-gray);
    width: 100%;
    height: fit-content;
  }

  .sub_first{
    font-size: var(--text_size18);
    font-weight: var(--text_500);
    line-height: var(--text_heightM);
    color: var(--color-brand-black);
    text-align: var(--text_center);
  }

  .sub_text{
    font-size: var(--text_size16);
    font-weight: var(--text_300);
    line-height: var(--text_heightM);
    color: var(--color-brand-black);
    text-align: var(--text_center);
    margin: 20px 0;
  }

  .sub_contact{
    font-size: var(--text_size16);
    font-weight: var(--text_300);
    line-height: var(--text_heightM);
    color: var(--color-brand-black);
    text-align: var(--text_center);
  }

  .sub_contact a{
    color: var(--color-brand-black);
    word-wrap: break-word;
    font-weight: var(--text_500);
  }

  .sub_contact a:hover{
    text-decoration: underline;
  }
}

