/*
Theme Name:ICLテーマ
Theme URI: http://www.tuad.ac.jp/
Description: 
Author: 東北芸術工科大学
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
Text Domain: 
*/
@charset "UTF-8";

/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

* {
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  }
body{
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
}
figure {
  margin: 0;
}
a{
  color: #387DCE;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}
/*- recapcha --*/
.grecaptcha-badge {
  visibility: hidden;
}


.main_head {
  width:100%;
  position: relative;
  background-color: #000;
  color: #fff;
  }
.main_head *{
    box-sizing: border-box;
  }
  .container_head{
    width:96.8%;
    max-width: 1840px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 260px 40px;
    justify-content: space-between;
    align-content: center;
    gap: 20px;
  }
  .logo{
    background-image: url(svg/head_name.svg);
    background-repeat: no-repeat;
    background-size: auto;
    font-size: 0;
    width:478px;
    height: 54px;
    margin: 33px 0;
    padding: 0;
    min-width: 440px;
    grid-column: 1;
  }
  .logo a{
    display: block;
    height: 54px;
  }
  .main_nav {
    grid-column: 3;
}
.sub_nav {
  grid-column: 4;
}
  nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 33px 0;
  }
  
  nav ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 900;
  }
  
  nav ul li a span {
    font-size: 0.825rem;
    font-weight: normal;
  }

  /* 言語切り替え
  -------------------*/
  .language-select{
    background-color: #387dce;
    color: #fff;
    width:260px;
    padding: 8px 20px 14px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .lang_title {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}
  .language-select select {
    width: 120px;
    border-radius: 20px;
    background-color: #fff;
    color: #000;
    padding: 5px 20px;
    border: none;
    font-size: 0.8rem;
    appearance: none;
    cursor: pointer;
}
.language-select::after {
    content: "\25BC";
    position: absolute;
    right: 30px;
    top:26%;
    font-size: 0.8rem;
    color:#000;
    pointer-events: none;
}
select option {
    background-color: white;
    color: black;
}
select option:first-child{
  display: none;
}
/* 言語切り替え */
.gtranslate_wrapper a {
  color: #fff;
  font-weight: 300;
}
.gtranslate_wrapper a.gt-current-lang{
  font-weight: 900;
}
  
  .search input[type=text] {
    width: 220px;
    margin-top: 15px;
    font-size: 1em;
    padding: 6px;
    border-radius: 20px;
    border:3px solid #ccc;
  }
  
  .search button {
    background-color: transparent;
    font-size: 0;
    background-image: url(svg/ico_search.svg);
    background-repeat: no-repeat;
    width:22px;
    height: 22px;
    border: none;
    padding: 5px 10px;
    margin: 0 5px;
    appearance: none;
    cursor: pointer;
  }


/* ハンバーガー
-------------------------------- */
  .menu_toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 5;
  }
  
/*メニューの中身*/
#gnav_content {
  /* display: none; */
  visibility:hidden;
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition:all 0.5s;
}
ul.gnav_list{
  background: #fff;
  padding: 0;
  height: 100vh;
  text-align: center;
}
ul.gnav_list li{display: block;}

ul.gnav_list li a {
  display: block;
  padding: 1.5em;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}
ul.gnav_list li a::first_line {
  font-size: 16px;
  font-weight: bold;
}


/*checkboxを非表示に*/
.gnav_hidden {display: none;}

/*labelで作るメニューボタン*/
#gnav_btn {
  display: block;
  width:fit-content;
  height: fit-content;
  z-index: 300;
  cursor: pointer;

}
#gnav_input:checked ~ #gnav_content {
    visibility: visible;
    overflow: auto;
    top:0;
    left: 0;
    display: block;
    transition:top 0.3s;
}


/* ハンバーガーメニュー部分 */

#gnav_btn span{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;  
  background: #fff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 24px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#gnav_btn span:first-child{
  transform-origin: 0% 0%;
}

#gnav_btn span:nth-last-child(2){
  transform-origin: 0% 100%;
}

#gnav_input:checked ~ #gnav_btn span{
  opacity: 1;
  transform: rotate(-45deg) translate(2px, -16px);
  background: #fff;
}
#gnav_input:checked ~ #gnav_btn span:nth-last-child(2){
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#gnav_input:checked ~ #gnav_btn span:nth-last-child(3){
  opacity: 1;
  
  transform: rotate(45deg) translate(0, -1px);
}

body:has(#gnav_input:checked){
  overflow: hidden;
}



/*薄い幕部分*/
#gnav_black {
  display: none;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
}

/*ハンバーガーメニュー*/
.gnav_site_name{
  font-size:calc (24 / 16 em);
  font-weight: bold;
}
.tuad_name{
  margin-top: 0.3em;
  width:137px;
  height: 16px;
  object-fit: contain;
}
.gnav_content {
  margin-bottom: 20px;
}
.gnav_logo {
  background-image: url(svg/head_name.svg);
    background-repeat: no-repeat;
    background-size: auto;
    font-size: 0;
    width: 478px;
    height: 54px;
    padding: 0;
  display: block;
  align-items: center;
  margin-bottom: 12vw;
  margin-top: 33px;
  margin-left: 1.6%;
}
  .menu_block{
  max-width: 1280px;
  width:100%;
  margin: auto;
}
.logo-image {
  width: 67px;
  height: 56px;
  background-image: url(svg/head_logo.svg);
  background-repeat: no-repeat;
  background-size: auto;
  margin-right: 10px;
}

.menu-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
}
.menu-item {
  margin-bottom: 1.6em;
  display: flex;
  align-items: center;
}
.menu-item span {
  padding-left: 1.2em;
  font-size: 21px;
  font-weight: normal;
      }

.menu-item::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #387dce;
  border-radius: 50%;
  margin-right: 10px;
}
.sub-item {
  margin-left: 20px;
  margin-bottom: 1.6em;
  font-weight: normal;
}
.sub-item::before {
  content: "—";
  margin-right: 10px;
  color: #387dce;
}
.menu-item a,.sub-item a{
  text-decoration: none;
  color: #fff;
}
.search-bar {
  margin-top: 2em;
  display: flex;
  align-items: center;
}
.search-input {
  width: 270px;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 1rem;
  border: 3px solid #ccc;
  margin-right: 0.4em;
}

.search-icon {
background-color: transparent;
font-size: 0;
background-image: url(svg/ico_search.svg);
background-repeat: no-repeat;
width:24px;
height: 24px;
border: none;
padding: 5px 10px;
margin: 0 5px;
appearance: none;
cursor: pointer;
}

.language-toggle a{
  color: #fff;
  text-decoration: none;
}

.menu-column {
  width: 33%;
}
.menu-column div{
  margin-bottom: 2em;
}
.menu-item{
  margin: 0;
  padding: 0;
}
.sub-item{
  margin: -0.45em 0 0 1em;
  padding: 0;
}
.search-bar {
  margin-top: 0;
}
.language-toggle {
  margin-top: 20px;
  text-align: left;
}

.search-and-lang .gtranslate_wrapper:before {
  content: "";
  display: inline-block;
  background-image: url(svg/ico_lang.svg);
  background-repeat: no-repeat;
  background-size: auto;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align:middle;
}
.search-and-lang .gtranslate_wrapper a:first-child::after{
  content: " / ";
  font-weight: 400;
}

.menu_name_block{
  width: 300px;
  margin: 130px 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  }
  .menu_name_block h1,
  .menu_name_block p{
    margin: 0;
    padding: 0;
  }
  
  .menu_lab_logo{
      background-image: url(svg/sp_gnav_site.svg);
      background-repeat: no-repeat;
      background-size: auto;
      font-size: 0;
      width:300px;
      height: 221px;
  }
  .menu_ci_logo{
    width:153px;
    height: auto;
    margin-top: 50px;
  }

@media screen and (max-width: 1500px) {
  .main_nav{
    display: none;
  }
}

    /* tb */
  @media screen and (max-width: 1024px) {
    .gnav_logo {
      padding: 0;
      width: 478px;
      height: 54px;
      margin: 33px 0 33px 1.6%;
      padding: 0;
      min-width: 440px;
  }
    .container_head{
      display: grid;
      justify-content: space-between;
      grid-template-columns: 1fr auto 40px;
    }
    .main_nav{
      display: none;
    }
    .sub_nav {
      grid-column: 2;
  }
    .menu_toggle {
      grid-column: 3;
  }
    .menu-container {
      flex-direction: column;
      justify-content: left;
    }
    .menu-column {
      width: 100%;
    }
    .menu-column div{
      margin-bottom: 1em;
    }
    .menu_block{
      width: 597px;
      margin: auto;
    }
    .search-input {
      flex-grow: 1;
    }

    .menu_name_block{
      width: 100%;
      margin: 80px auto 50px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      }
      .menu_name_block h1,
      .menu_name_block p{
        margin: 0;
        padding: 0;
      }
      .menu_lab_logo{
          background-image: url(svg/sp_foot_name.svg);
          background-repeat: no-repeat;
          background-size: contain;
          font-size: 0;
          width:100vw;
          height: 15vw;
      }
      .menu_ci_logo{
        width:100%;
        height: auto;
        margin-top: 3vw;
      }

  }
  @media (max-width: 850px) {
    .container_head{
      width:96.5%;
      max-width: initial;
      gap: 0;
    }
    .sub_nav{
      display: none;
    }
  }

  /* sp */
  @media (max-width: 768px) {
    .container_head{
      width:91.14%;
    }
    .logo{
      background-size: auto;
      font-size: 0;
      min-width: initial;
      width: 63vw;
      height: 7.3vw;
      margin: 2rem 0;
      padding: 0;
    }
    .logo a{
      display: block;
      height: 7.3vw;
    }
    .menu-toggle {
      display: block;
    }
    .main_nav, .language-select, .search {
      display: none;
    }
    .menu_block {
      width: 90%;
    }
    .menu-item,.sub-item {
              margin-bottom: 1em;
    }
    .gnav_logo {
      background-size: auto;
        font-size: 0;
        min-width: initial;
        width: 63vw;
        height: 7.3vw;
        margin: 2rem 0 2rem 4.3%;
        padding: 0;
    }
/*     #gnav_input:checked ~ #gnav_btn {
      top: 45px;
      right: 6.5%;
  } */
  .menu_name_block h1,
  .menu_name_block p{
text-align: center;
  }
  .menu_ci_logo{
    width: 80%;
    height: auto;
    margin-top: 6vw;
  }

  }


/*スクロールダウン全体の場所*/
.page_scroll{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom:15%;
left:24px;
z-index: 100;
animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
    0%{bottom:15%;}
    50%{bottom:17%;}
   100%{bottom:15%;}
}

/*Scrollテキストの描写*/
.page_scroll span{
  /*描画位置*/
position: absolute;
left:-10px;
bottom:10px;
  /*テキストの形状*/
color: #000;
font-size: 0.8rem;
letter-spacing: 0.05em;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.page_scroll:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: -90px;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #000;
  transform: skewX(-31deg);
}

.page_scroll:after{
content:"";
  /*描画位置*/
position: absolute;
bottom:-90px;
right:0;
  /*矢印の形状*/
width:1px;
height: 80px;
background:#000;
}


  /* Footer
  ------------------------- */
  .footer{
    background-color: #387DCE;
    width: 100%;
    padding-top: 150px;
    padding-bottom: 70px;
}
.footer *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.footer .container{
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 40px 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.foot_name_block{
    width:50%;
}

.foot_lab_logo{
    font-size: 0;
    background-image: url(svg/foot_site.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width:500px;
    height: 400px;
    margin-top: 40px;
    margin-bottom: 66px;
}
.foot_ci_logo{
    width:274px;
    height: 37px;
}

.foot_nav_block{
    width:50%;
    min-width: 650px;
    padding-top: 0;
    padding-bottom: 480px;
}
.foot_nav_block::after{
    position: absolute;
    display: inline-block;
    content: url(images/foot_img.png);
    object-fit: contain;
    bottom:90px;
    right:-90px;
}
.foot_nav {
    width: 100%;
    margin-bottom: 5rem;
}
.foot_menu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.foot_menu li {
    margin-left: 2rem;
    margin-right: 2rem;
    text-align: center;
}
.foot_menu li:last-child {
    margin-right: 0;
}
.foot_menu a,
.foot_terms a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
}
.foot_menu a span {
    font-weight: 800;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 2px;
}

.foot_terms {
    margin-top: 70px;
    margin-right: 20px;
    margin-bottom: 45px;
    text-align: right;
}
.foot_btn {
    text-align: right;
}
.contact-link {
    display: inline-flex;
    justify-content: center;
    width: 480px;
    height: 80px;
    align-items: center;
    background-color: #E95037;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-link::before{
    display: inline-block;
    content: url(svg/ico_mail.svg);
    width:42px;
    height: 24px;
    padding-right:21px;
}
.contact-link:hover {
    opacity: 0.7;
    text-decoration: none;
}
.footer-copyright{
    text-align: center;
    color:#fff;
    font-size: 0.85em;
}

@media (max-width:1024px){
.footer {
  padding-top: 70px;
}
.footer .container{
max-width: initial;
flex-direction: column;
}
.foot_nav_block{
margin: auto;
padding-bottom: 0;
}
.foot_terms {
margin-top: 65px;
margin-right: initial;
margin-bottom: 50px;
text-align: center;
}
.foot_btn {
text-align: center;
}
.foot_nav_block::after {
position: static;
display: block;
content: " ";
object-fit: none;
background-image: url(images/foot_img.png);
background-repeat: no-repeat;
background-size: cover;
bottom: initial;
right:initial;
width:558px;
height: 276px;
margin: 60px auto 40px;
}
.foot_name_block{
max-width: 732px;
width:100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.foot_logo{
max-width: 165px;
width:100%;
max-height:142px;
height: auto;
margin-right: 33px;
}
.foot_lab_logo{
    background-image: url(svg/sp_foot_name.svg);
    width:732px;
    height: 144px;
    margin-bottom: 50px;
}

}
@media (max-width:768px){
  .footer {
    padding-top: 50px;
  }
.foot_nav_block {
width:100%;
min-width: initial;
}
.foot_nav{
max-width: 400px;
width: 100%;
margin: auto;
}
.foot_menu {
flex-direction: column;
justify-content: center;
}
.foot_terms{
    max-width: 400px;
    width: 100%;
    margin: 0 auto 3em;
    text-align: left;
}
.foot_menu li {
    margin-bottom: 2em;
    margin-right: initial;
    text-align: left;
}
.foot_menu a::before,.foot_terms a::before {
    content: "●";
    font-size: 24px;
    margin-right: 0.5em;
}
.foot_menu a span{
    display: inline-block;
    padding-right: 1em;
    font-size: 24px;
}
.foot_menu a {
    font-size: 18px;
}
.foot_terms a{
    font-size: 24px;
}
.foot_nav_block::after{
    background-image:none;
    height: 0;
}
.foot_lab_logo {
width: 88.4vw;
height: 18.75vw;
margin-bottom: 3.5vw;
}
.contact-link {
max-width: 450px;
width: 88%;
height: 80px;
}
}

/* サイドメニュー
---------------------- */
.sidebar_nav ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.btn_login{
  display: block;
  position: fixed;
  right: 0;
  top:158px;
  background-image: url(svg/side_btn_login.svg);
  background-repeat: no-repeat;
  width:60px;
  height: 160px;
  font-size: 0;
  z-index: 20;
}

.btn_members{
  display: block;
  position: fixed;
  right: 0;
  top:330px;
  background-image: url(svg/side_btn_member.svg);
  background-repeat: no-repeat;
  width:60px;
  height: 160px;
  font-size: 0;
  z-index: 10;
}
.pagetop a{
  display: block;
  position: fixed;
  background-image: url(svg/btn_gotop.svg);
  background-repeat: no-repeat;
  width: 17px;
  height: 173px;
  /* bottom: 50px; */
  bottom: -200px;
  right: 40px;
  filter: (0 0 0.1rem #fff);
  font-size: 0;
  transition: bottom 0.3s;
}




/*お知らせ部分
---------------------------------------*/

.news_container {
  width: 100%;
  background-color: #387dce;
  color: white;
  padding-bottom: 100px;
  border-bottom-right-radius: 300px;
  position: relative;
  margin-bottom: 2em;
  margin-top: 0;
  position: relative;
}

  .news_head{
      max-width: 1280px;
      margin: 0 auto;
      padding: 0;
      margin-bottom: 20px;
  }
  .news_head header {
    padding-top: 8rem;
    margin-bottom: 3rem;
    position: relative;
}

.news_container.top_il1::after {
  content: "";
  display: block;
  background-image: url(svg/top_ill_1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 188px;
  height: 220px;
  position: absolute;
  top: -110px;
  left: 40px;

}

.news_container h1 {
      letter-spacing: 0.1em;
      font-size: 2.5em;
      margin: 0;
  }
.news_container h1 span {
      letter-spacing: 0;
      font-size: 0.5em;
      padding-left: 1em;
      vertical-align: 30%;
  }
.news_container .news_item:nth-child(4){
    display: none;
  }
  .keyword_block{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .keyword_title{
      letter-spacing: 0.1em;
      font-size: 1.1em;
      margin-right: 1em;
  }
  .keyword_block a{
      color:#fff;
      text-decoration: none;
      margin-right: 0.8em;
  }
  .news_link {
      color: #fff;
      text-decoration: none;
  }
  .news_link::after {
      display: inline-block;
      content: "";
      width: 60px;
      height: 60px;
      background-image: url(svg/btn_news.svg);
      background-repeat: no-repeat;
      background-size: cover;
      color: black;
      padding: 0;
      margin-left: 1em;
      vertical-align: middle;
  }
  .nows_block {
    position: absolute;
    right: 0;
    top: 160px;
}


  .news_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      padding-bottom: 90px;
  }
  .news_item {
      width:400px;
      color: #ffffff;
      overflow: hidden;
  }
  .news_item a {
      color: #ffffff;
      text-decoration: none;
  }
  .news_item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
  }
  .news-content {
      padding: 15px;
  }
  .news_date {
      margin: 1em 0;
      color: #FBD237;
      font-size:0.875em;
  }
  .news_title {
      margin: 1em 0;
      font-size:1.1em;
      line-height: 1.5;
  }
  .news_tags {
      border-top:1px solid #fff;
      padding-top: 1em;
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
  }
  .tag {
      font-size: 1em;
      padding-right: 1em;
  }
  @media (max-width: 1024px) {
      .news_container {
      padding-bottom: 0;
      border-radius: 0;
      }
      .news_head{
      max-width: calc(1024px - 160px);
      width: 90%;
      margin: 0 auto;
      padding: 0 0 120px;
      position: relative;
    }
    .news_head header{
      position: initial;
    }
  .news_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .nows_block {
    position: absolute;
    top:initial;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}
.list_date {
  color:#9e9e9e;
}
.news_link{
  text-decoration: none;
  text-align: center;
  color:#387dce;
  background-color: #FBD237;
  font-size: 1.5em;
  display: block;
  font-weight: bold;
  line-height: 3.5;
  display: block;
  border-radius: 40px;
  max-width: 450px;
  margin: 2em auto 2em;
  position: relative;
 }
 .news_link:after{
  background-image: url(svg/btn_arrow.svg);
  width:10px;
  height: 18px;
  position: absolute;
  top:calc(50% - 8px);
  right:1em;
 }
 .news_link:hover{
  text-decoration: none;
 }
}
  @media (max-width: 768px) {
    .page_scroll{
      display: none;
    }
.news_container {
padding-bottom: 100px;
border-radius: 0;
}
.news_head {
  padding: 0 0 180px;
  width: calc(100% - 80px);
}
.news_head header {
  padding-top: 4rem;
}
.keyword_block {
  grid-template-columns: 110px 1fr;
}
.news_grid {
width: 100%;
grid-template-columns: 1fr;
}
.news_item {
width: 100%;
margin: 0 auto;
}
.news_item img {
height: auto;
object-fit: cover;
}
.news_item:nth-child(3){
  display: none;
}
.news_item:nth-child(4){
  display: none;
}

.case:nth-child(3){
  display: none;
}
.case:nth-child(4){
  display: none;
}
.case:nth-child(5){
  display: none;
}
.case:nth-child(6){
  display: none;
}

 .nows_block{
  position: absolute;
  width: 100%;
 }
 
 .news_link:after{
  background-image: url(svg/btn_arrow.svg);
  width:10px;
  height: 18px;
  position: absolute;
  top:calc(50% - 8px);
  right:1em;
 }
  }


  .hero_container{
    width: 100%;
    margin: 0 auto;
    padding: 100px 0 0 0;
    background-color: #fff;
}
.main_hero{
    width:100%;
    /* max-width: 1920px; */
    max-height: 700px;
    display: grid;
    grid-template-columns:43% 57%; 
    gap:0;
    position: relative;
}
.hero_title{
    background-image: url(images/hero_site_logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 15.5vw;
    margin-top: 12.3vw;
    width: 21.5vw;
    height: 15.8vw;
    max-width: 440px;
    max-height: 325px;
}
.hero_copy{
    position: absolute;
    left:15.5vw;
    top: -0.85em;
    font-size: 1.75rem;
    line-height: 3.75rem;
    margin: 0;
    padding: 0;
    z-index: 12;
}
.hero_block{
    border-top-left-radius: 300px;
    background-color: #fff;
    /* overflow: hidden; */
    line-height: 0;
}
.hero_block img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.metaslider .flexslider {
  margin: 0 !important;
  max-height: 700px !important;
}

.metaslider .flex-control-nav {
  bottom: 20px !important;
  z-index: 13;
  left: -180px;
  text-align: left;
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  /* text-align: center; */
}
body .metaslider .coin-slider, body .metaslider .nivoSlider, body .metaslider .nivoSlider img, body .metaslider .rslides, body .metaslider .rslides li, body .metaslider .flexslider ul.slides, body .metaslider .flexslider .slides li, body .metaslider .flexslider .slides ul, body .metaslider .flexslider .slides ol, body .metaslider .flexslider .slides img, body .metaslider .flexslider .flex-direction-nav, body .metaslider .flexslider .flex-direction-nav li {
  border-top-left-radius: 300px !important;
}
.caption-wrap{
display: none !important;
}


@media screen and (max-width:1024px) {
    .hero_container{
    padding: 0;
}
    .main_hero {
    width: 100%;
    max-width: initial;
    max-height: initial;
    display: block;
    }
    .hero_title{
    margin-left: 3.51vw;
    margin-top: 3.5vw;
    width: 25.6vw;
    height: 18.8vw;
    max-width: initial;
    max-height: initial;
    }
    .hero_copy{
    left:35.15vw;
    font-size: 1.5rem;
    line-height: 3.5rem;
    margin: 0;
    padding: 0;
    }
    .hero_block{
        margin-left: 15.6vw;
        margin-top: -3vw;
}
.metaslider .flex-control-nav{
  left:-130px;
}

}
@media screen and (max-width:768px) {
    .main_hero {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    }
    .hero_block{
        margin-left: 0;
        margin-top: 0;
        border-radius: 0;
    }
    .hero_title{
        background-image: url(images/sp_hero_site_logo.png);
        background-size: contain;
        background-position-y: bottom;
        padding-bottom: 40vw;
    margin-left: auto;
    margin-right: auto;
    margin-top:2em;
    margin-bottom: 3em;
    width: 80%;
    }
    .hero_copy{
    position: initial;
    left:initial;
    width:100%;
    font-size: 3.6vw;
    line-height: 8vw;
    margin: 0;
    padding: 0;
    }

    .metaslider .flexslider {
      margin: 0 0 40px !important;
    }
    
    .metaslider .flex-control-nav {
      bottom: -30px !important;
      z-index: 13;
      left: initial;
      text-align: center;
    }
    .flex-control-nav {
      width: 100%;
      position: absolute;
      bottom: -40px;
      /* text-align: center; */
    }
    body .metaslider .coin-slider, body .metaslider .nivoSlider, body .metaslider .nivoSlider img, body .metaslider .rslides, body .metaslider .rslides li, body .metaslider .flexslider ul.slides, body .metaslider .flexslider .slides li, body .metaslider .flexslider .slides ul, body .metaslider .flexslider .slides ol, body .metaslider .flexslider .slides img, body .metaslider .flexslider .flex-direction-nav, body .metaslider .flexslider .flex-direction-nav li {
      border-top-left-radius: initial !important;
    }
}


/* single
-------------------------------- */
.cat_news{
  background-color: #C1DEF4;
  width: 100%;
  height: 200px;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
  margin-bottom: 100px;
}
.cat_news.news_bkg::after {
  content: "";
  display: block;
  background-image: url(svg/img_news_il.svg);
  background-repeat: no-repeat;
  width: 233px;
  height: 244px;
  top: 140px;
  position: absolute;
  left: calc(50% - 400px);
}

.cat_news.research_bkg::after {
  content: "";
  display: block;
  background-image: url(svg/img_research_il.svg);
  background-repeat: no-repeat;
  width: 297px;
  height: 244px;
  top: 140px;
  position: absolute;
  left: calc(50% - 460px);
}
.cat_news.researcher_bkg::after {
  content: "";
  display: block;
  background-image: url(svg/img_researcher_il.svg);
  background-repeat: no-repeat;
  width: 403px;
  height: 248px;
  top: 140px;
  position: absolute;
  left: calc(50% - 500px);
}
.cat_news h1{
  font-size: 44px;
  margin: 0;
  padding: 0;
}
.cat_news h2{
  font-size: 18px;
  font-weight:bold;
  margin: 0;
  padding: 0;
}
.content_block{
  width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.main_block{
  width: 900px;
}
.no_article{
  font-size: 1.2rem;
  padding-top: 1em;
  padding-bottom: 3em;
}
.cat_list{
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #B0B0B0;
}
.cat_list a{
  text-decoration: none;
  color:#000;
}
.list_article{
  display: flex;
  justify-content: space-between;
}
.list_article a{
  text-decoration: none;
  color:#000;
}
.list_icatch{
  width:400px;
  height: auto;
  object-fit: contain;
}
.list_icatch a{
margin: 0;
padding: 0;
overflow: hidden;
}
.list_icatch img{
  width: 100%;
  height: auto;
}
.list_icatch img:hover{
  opacity: 0.7;
}

.list_section{
  position: relative;
  margin-left: 35px;
  width:calc(100% - 400px);
}
.list_section p{
  margin: 0 0 18px;
  padding: 0;
}
.list_title{
  font-size: 1.1em;
  line-height: 1.5;
  margin: 0 0 18px;
  padding: 0;
}
.list_title a:hover{
  opacity: 0.6;
  text-decoration: underline;
}
.list_tag{
  padding: 0;
  margin: 0;
  position: absolute;
  bottom:0;
}
.list_tag a{
  margin-right: 1em;
  color: #85a7cd;
  text-decoration: none;
}
.list_tag a:hover{
  opacity: 0.6;
  text-decoration: underline;
}
/* .list_tag a:first-child{
  margin-left: 0;
  margin-right: 0;
} */

.aside_block{
  width:300px;
}

.aside_title{
  background-color: #000;
  width:100%;
  text-align: center;
  color:#fff;
  font-size: 20px;
  padding: 15px;
  margin: 0 0 1em;
  border-radius: 30px;
}
.aside_block_content{
  width: 100%;
  margin: 0 auto 3.5em;
}
.aside_link_tag{
  text-align: right;
  padding-right: 0.45em;
}
.aside_link_tag a{
  text-decoration: none;
  color:#387DCE;
}
.a_tag{
  display: inline-block;
  background-color: #C1DEF4;
  text-align: center;
  padding: 0.5em 1em;
  margin-bottom: 0.5em;
  border-radius: 2em;
  margin-right: 0.5em;
}
.a_tag a{
  color: #000;
  text-decoration: none;
}
.aside_archive{
  width: 90%;
  margin: 1em auto;
}
.aside_archive ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.aside_archive li{
  line-height: 2.4;
}
.aside_archive li > ul{
  border-top:1px solid #ccc;
  padding-left: 1.5em;
}
.aside_archive a{
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
.archive_level_1 a:before{
  display: inline-block;
  content: "▶︎";
  font-size: 0.8em;
  padding-right: 1em;
  vertical-align: middle;
}

.archive_level_2 a:before{
  display: inline-block;
  content: "-";
  font-size: 0.8em;
  padding-right: 1em;
}

/* お知らせ個別ページ */
.image-placeholder {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.image-placeholder img{
  width:100%;
  height: auto;
}
.single_keyword {
  margin-bottom: 1rem;
}
.single_keyword a{
  margin-right: 0.5rem;
}
.content_single h1{
  font-size: 2em;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.content_single h2{
  font-size: 1.5em;
  line-height: 1.4;
  border-bottom: 8px solid #387DCE;
  padding-bottom: 0.2rem;
  padding-left: 0.5rem;
}
.content_single p + h2{
  margin-top: 3rem;
}
.content_single p + h3{
  margin-top: 3rem;
}
.content_single h3{
  font-size: 1.5em;
  line-height: 1.6;
}
.content_single h3::before{
  content:"●";
  color:#387DCE;
  font-size: 1.4em;
  line-height: 1;
  vertical-align: text-bottom;
  padding-right: 2px;
}
.content_single p{
  font-size: 1.2rem;
  line-height: 1.6;
}
.content_single ul{
  list-style-type: "●";
  font-size: 1.2rem;
  margin: 0;
  padding: 1.2em;
}
.content_single li{
  padding-bottom: 0.8em;
}
.content_single table{
  border-collapse: collapse;
}
.content_single td,th{
  border: 1px solid #999;
  padding: 0.6em;
}
.content_single img{
  max-width: 980px !important;
  height: auto;
}

.keywords {
  color: #1e90ff;
  margin-bottom: 10px;
}
.date {
  color: #808080;
  margin-bottom: 20px;
}
.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.lead {
  margin-bottom: 20px;
}
.subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1e90ff;
}
.content {
  line-height: 1.6;
}
.content_single{
  width:980px;
  margin: 100px auto 100px;
}
.foot-nav-single {
  background-color: #EFEFEF;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  grid-template-columns: 1fr minmax(10%, 980px) 1fr;
  text-align: center;
}
.foot-nav-single div{
  border-collapse: collapse;
  border: 1px solid #000;
  height: 120px;
  width: 100%;
}
.foot-nav-single div a{
  text-align: center;
  align-items: center;
  text-decoration: none;
  color: #000;
  width: 100%;
  display: flex;
  height: 100%;
  justify-content: center;


}
@media screen and (max-width:1200px) {
.content_block {
    width: 88%;
    display: block;
}
.main_block{
  width:100%;
}
.aside_block{
  width:100%;
}
  .foot-nav-single {
    width: 100%;
    grid-template-columns: 1fr minmax(0, 50%) 1fr;

  }

}
@media screen and (max-width:768px) {
  
  .sidebar_nav ul{
    width:100%;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr; 
    gap:0;
    margin: 0;
    padding: 0;
  }
  
  .sidebar_nav li{
    align-items: center;
    align-content: center;
  }
  .sidebar_nav a{
    text-decoration: none;
  }
  /*
  サイドバーボタン
  */
  .btn_login{
    text-align: center;
    display: block;
    position: initial;
    background-color: #EA4134;
    background-image:initial;
    background-repeat: no-repeat;
    color:#fff;
    width:100%;
    max-height: 80px;
    height: 80px;
    font-size: 1.2em;
    align-content: center;
  }
  
  .btn_members{
    text-align: center;
    position: initial;
    background-color: #000;
    background-image:initial;
    background-repeat: no-repeat;
    color:#fff;
    width:100%;
    max-height: 80px;
    height: 80px;
    align-items: center;
    align-content: center;
    font-size: 1.2em;
  }

    .cat_news.news_bkg::after {
      content: "";
      display: none;
  }
  .cat_news.research_bkg::after {
    content: "";
    display: none;
}
.cat_news.researcher_bkg::after{
  content: "";
  display: none;
}
  .content_single {
    width: calc(100% - 40px);
    margin: 3rem auto 8rem;
}
.content_single img {
  max-width: 100% !important;
  height: auto !important;
}
.image-placeholder {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.list_article{
  flex-direction: column
}
.list_icatch{
width: 100%;
}
.list_section{
  width: 100%;
  margin: 0;
  padding: 1rem;
}
.list_tag{
  position: initial;
}
}

/* resarch */

.research_container {
max-width: 1300px;
margin: 0 auto 3em;
background-color: #fff;
padding-top:2rem;
position: relative;
}
.research_container.top_il2::after {
  content: "";
  display: block;
  background-image: url(svg/top_ill_2.svg);
  background-repeat: no-repeat;
  width: 414px;
  height: 232px;
  position: absolute;
  top: -100px;
  right: -65px;
}
  .research_header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  }
  .research_header h1 {
  color: #387DCE;
  font-size: 2em;
  margin: 0;
  }
  .research_header h1 span {
  color: #000;
  letter-spacing: 0;
  font-size: 0.5em;
  padding-left: 1em;
  vertical-align: 30%;
  }
  .research_keyword{
  color: #B0B0B0;
  margin-bottom: 3rem;
  }
  .research_keyword a{
  text-decoration: none;
  color: #B0B0B0;
  margin-right: 0.8em;
  }
  .news_item a{
    margin-right: 0.8em;
  }
  .keyword_title {
  font-weight: 900;
  font-size: 1em;
  margin-right: 1em;
  }
  .case_container {
  display: grid; 
  grid-auto-columns: 1fr; 
  grid-template-columns: 1fr 1fr 1fr; 
  gap: 50px 50px;
  }
  .case {
  position: relative;
  padding: 0;
  }
  .case a{
    text-decoration: none;
    color: #000;
  }
  .case_number {
  position: absolute;
  top:0;
  left:0;
  width:100px;
  line-height: 1.1;
  text-align: center;
  background-color: #387DCE;
  color: white;
  padding: 24px 10px;
  display: inline-block;
  margin-bottom: 10px;
  justify-self: start;
  font-weight: 600;
  }
  .case_number span{
  display: block;
  font-size: 1.9em;
  font-weight: 900;
  }
  .case_image{
  width: 400px;
  height: 400px;
  border-top-right-radius: 50px;
  overflow: hidden;
  margin-bottom: 10px;
  }
  .case_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  .case_date {
  color: #888;
  font-size: 0.9em;
  margin-bottom: 1em;
  }
  .case_title {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1em;
  }
  .case_keywords {
  border-top:1px solid #387DCE;
  padding-top: 1em;
  color: #387DCE;
  font-size: 1em;
  }
  .case_keywords a:first-child{
    padding: 0;
  }
  .case_keywords a{
  text-decoration: none;
  color: #387DCE;
  margin-right: 0.8em;
  }

  .research_list {
    padding-top: 0;
  text-align: right;
  padding-bottom: 2rem;
  }
  .research_link{
  text-decoration: none;
  color: #000;
  font-size: 0.84em;
  }
  .research_link:after{
      content: "";
        display: inline-block;
        content: "";
        width: 60px;
        height: 60px;
        background-image: url(svg/btn_research.svg);
        background-repeat: no-repeat;
        background-size: cover;
        color: black;
        padding: 0;
        margin-left: 1em;
        vertical-align: middle;
  }
  
/*検索結果
----------------*/
.search_block{
  width: 1300px;
  margin: 0 auto 6em;
}


  





  /* 調査員紹介
  ----------------- */

  .profile_block{
    width: 1300px;
    margin: 0 auto;
}
.profile_block .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained {
  width: 100%;
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-template-rows: auto 1fr;
  gap: 46px 20px;
  grid-template-areas:
      "photo head"
      "photo detail";
  padding-bottom: 2em;
  border-bottom: 1px solid #B0B0B0;
  margin-bottom: 4em;
}


       /* .profile_container {
            width: 100%;
            display: grid; 
            grid-template-columns: 400px 1fr; 
            grid-template-rows: auto 1fr; 
            gap: 46px 20px; 
            grid-template-areas: 
            "photo head"
            "photo detail";
            padding-bottom: 2em;
            border-bottom: 1px solid #B0B0B0;
            margin-bottom: 4em;
        } */
        .profile_image {
            grid-area: photo;
            border-top-right-radius: 150px;
            overflow: hidden;
        }
        .profile_image img{
          width: 100%;
          height: auto;
          object-fit: contain;
        }
        .profile_photo{
            width: 100%;
        }
        .profile_content {
            flex: 1;
            padding: 20px;
        }
        .profile_badge {
          background-color: #387DCE;
          width: 150px;
          height: 150px;
          align-content: center;
          color: #ffffff;
          text-align: center;
          vertical-align: middle;
          border-radius: 100%;
          display: inline-block;
          font-size: 1.5rem;
        }
        .profile_badge2 {
          background-color: #C1DEF4;
          width: 150px;
          height: 150px;
          align-content: center;
          color: #387DCE;
          text-align: center;
          vertical-align: middle;
          border-radius: 100%;
          display: inline-block;
          font-size: 1.5rem;
        }
        .profile_head{
            grid-area: head;
            display: grid;
            grid-template-columns:150px auto;
            gap:25px;
            align-items: center;
        }
        .profile_more{
            display: none;
        }
        .profile_body{
            grid-area: detail;
        }
        .profile_card h1 {
            font-size: 38px;
            margin: 0 0 10px 0;
            letter-spacing: 0.1em;
        }
        .profile_card h1 span{
            font-size: 24px;
            font-weight: 100;
            color:#387DCE;
            letter-spacing: 0.3em;
        }
        .profile-title {
            color: #666;
            margin-bottom: 20px;
        }
        .profile_body p {
            margin-bottom: 10px;
        }



/* お問い合わせ
------------------ */

.contact_block{
width:100%;
background-color: #C1DEF4;
}
.form_container {
max-width: 1300px;
margin: 0 auto;
padding: 20px;
background-color: #C1DEF4;
}
.contact_head h1 {
font-size: 46px;
text-align: center;
padding: 46px 0 0;
margin: 0 auto;
}
.contact_head p{
font-size: 18px;
text-align: center;
padding: 0;
margin: 0 auto 46px;
}
.form_container form {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 40px 10px;
align-items: center;
padding-bottom: 50px;
}
.form_container label {
font-size: 1.4em;
text-align: right;
padding-right: 10px;
display: block;
}
.form_container input,
.form_container textarea {
font-size: 1.4em;
width: 100%;
padding: 16px;
border: 1px solid #387dce;
border-radius: 4px;
box-sizing: border-box;
}
.form_container textarea {
height: 390px;
}
.privacy-box {
grid-column: 1 / -1;
margin-top: 20px;
padding: 2em;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1.2em;
height: 500px;
overflow-y:scroll;
}
.privacy-box h4 {
text-align: center;
margin-top: 0;
}
.privacy-box p {
margin-bottom: 10px;
}
.privacy-box ul {
  list-style-type: none;
}
.privacy-box ol, .privacy-box ul {
padding-left: 20px;
}
.privacy-box li {
margin-bottom: 5px;
}
.checkbox-container {
grid-column: 1 / -1;
text-align: center;
}
.checkbox-container p{
  margin: 0;
  padding: 0;
}
.checkbox-container input {
width: auto;
margin-right: 10px;
}
.checkbox-container input[type=submit] {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.form_container input[type=checkbox] {
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: bottom;
  padding-bottom: 6px;
}

.form_container .button {
font-size:1.1em;
grid-column: 1 / -1;
justify-self: center;
margin-top: 20px;
padding: 10px 20px;
background-color: #e74c3c;
color: white;
border: none;
border-radius: 50px;
cursor: pointer;
max-width: 450px;
width: 60%;
height:80px;
}
.form_container .button:hover {
background-color: #c0392b;
}
.wpcf7 .required::after {
content: " *";
color: red;
}
.form_caution{
text-align: center;
font-size: 1.1em;
}
.mark{
color:red;
}
.privacy_msg{
text-align: center;
padding: 0;
margin: 0 0 -2em;
grid-column: 1 / -1;
justify-self: center;
}
.wpcf7-form p {
  margin: 0;
  padding: 0;
}
.wpcf7-response-output {
  grid-column: 1 / -1;
  padding: 1em;
  text-align: center;
  background-color: #fff;
  margin: auto;
}
.checkbox-container .wpcf7-spinner{
  display: block;
  margin: 0.5em auto;
}





.screen-reader-text{
  display: none;
}
.pagination{
  width:100%;
}
.nav-links{
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-numbers {
  display: flex;
  width: 80px;
  height: 80px;
  text-decoration: none;
  color: #000;
  font-size: 22px;
  border: 1px solid #000;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 100%;
  margin: 1em 0.2em;
}
.page-numbers.next,
.page-numbers.prev{
  display: none;
}
.page-numbers.current {
  color: #fff;
  background-color: #000;
}

@media screen and (max-width:1024px) {
  /* 調査員一覧
  ------------- */
  .profile_block{
  width: 100%;
  margin: 0 auto;
  }
  .search_block{
  width: 90%;
  margin: 0 auto 6em;
  }

  .content_single img {
    max-width: 100% !important;
    height: auto !important;
  }
  .foot_menu{
    justify-content: center;
  }
.research_container {
max-width: calc(1024px - 160px);
margin: 0 auto;
background-color: white;
gap: 30px 20px;
width: 100%;
}
.case_container {
display: grid; 
grid-auto-columns: 1fr; 
grid-template-columns: 1fr 1fr; 
gap: 50px 50px;
padding-bottom: 40px;
}
research_list {
  text-align: center;
}
.research_link{
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #387dce;
  font-size: 1.5em;
  display: block;
  line-height: 3.5;
  border-radius: 40px;
  max-width: 450px;
  margin: 2em auto 2em;
  position: relative;
}
.research_link:after{
  display: block;
content: "";
background-image: url(svg/ico_arrow.svg);
background-repeat: no-repeat;
width: 9px;
height: 17px;
position: absolute;
top: calc(50% - 8px);
right: 5%;
}
.research_link:hover{
  text-decoration: none;

}

  .cat_news {
    height: 160px;
    padding-top: 30px;
    margin-bottom: 50px;
}
.news_container.top_il1::after {
  content: "";
  display: none;
}
  .research_container.top_il2::after {
    content: "";
    display: none;
  }
  
}

@media screen and (max-width:768px) {
/* 調査員一覧
------------- */
  .profile_block {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: block;
  }

  .profile_block .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained {
    width: 100%;
    grid-template-areas:
      "photo"
      "head"
      "detail";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    gap: 40px;
  }

  .profile_image {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
  }

  .profile_image img,
  .profile_image svg {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .profile_head {
    position: relative;
    display: block;
  }

  .profile_more {
    display: block;
    text-align: right;
  }

  .profile_badge,
  .profile_badge2 {
    position: absolute;
    top: -170px;
    left: 0;
  }

  .profile-title {
    color: #666;
    margin-bottom: 20px;
  }

  .read-more {
    color: #4a90e2;
    text-decoration: none;
  }


  /* お問い合わせフォーム
  ------------------ */
  .form_container form {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form_container label {
    color: #666;
    text-align: left;
    padding-right: 10px;
  }

  .privacy_msg {
    text-align: left;
    height: 7em;
  }

  textarea {
    height: 4em;
  }

  .privacy-box {
    height: 450px;
    padding: 1em;
  }

  .form_container .button {
    width: 88%;
  }

  /* 調査報告書
  --------------------- */
  .research_container {
    max-width: initial;
    width: calc(100% - 80px);
    margin: 0 auto;
  }

  .case_container {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 0;
  }

  .case_image {
    width: 100%;
    height: 88.15vw;
    border-top-right-radius: 50px;
    overflow: hidden;
    margin-bottom: 10px;
  }
    }

/* 会員登録
------------------------------------- */
    .member_container{
      width:100%;
      max-width: 1300px;
      margin: 0px auto 45px;
      position: relative;
    }
    .member_container > p:first-child{
      padding-bottom: 50px;
    }
  .member_container:after{
      display: block;
      content: "";
      width:396px;
      height:319px;
      background-image: url(images/ill_ml_3.png);
      background-repeat: no-repeat;
      background-position: center;
      position: absolute;
      bottom: 20px;
      left: -100px;
  }
  .member_line{
      border:1px solid #387dce;
  }
  
  .mail_member_box,
  .monitor_member_box{
    width:1000px;
    background-color: #fff;
    border-top-left-radius: 90px;
    border-bottom-right-radius: 90px;
    padding: 50px 90px;
    overflow: hidden;
    margin-left: 300px;
    margin-bottom: 40px;
  }
  .mail_member_box h2{
      color: #387DCE;
      font-size: 2em;
      margin: 0;
  }
  .mail_member_box h2::before{
  display: block;
  content: url(images/ill_ml_1.png);
  float: right;
  padding-left: 100px;
  }
  .monitor_member_box h2{
      color: #387DCE;
      font-size: 2em;
      margin: 0;
  }
  .monitor_member_box h2::before{
  display: block;
  content: url(images/ill_ml_2.png);
  float: right;
  padding-left: 100px;
  }
  
  .member_form_box{
    text-align: center;
    padding: 30px 0 60px;
  }

  
  @media screen and (max-width:1300px) {
      .content_block {
          width: 100%;
      }
     .member_container > p:first-child{
      padding: 0 30px 50px;
  }
  .member_container{
      max-width: initial;
    }
  .mail_member_box,
  .monitor_member_box{
    width:1000px;
    margin-left: calc(100% - 1000px);
  }
  }
  
  @media screen and (max-width:1024px) {
    .member_container:after{
      display: none;
  }
  
  .mail_member_box,
  .monitor_member_box{
    width:calc(100% - 3rem);
    margin-left: 30px;
    margin-right: 30px;
    padding: 50px 50px 0;
  }
  .mail_member_box h2::before,
  .monitor_member_box h2::before{
  display: none;
  float: initial;
  padding-left: initial;
  }
  .mail_member_box p::after{
  display: block;
  content: "";
  width: 368px;
  height: 250px;
  background-image: url(images/ill_ml_1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  padding-top: 2rem;
  margin: auto;
  }
  
  .monitor_member_box p::after{
  display: block;
  width: 328px;
  height: 250px;
  content: "";
  background-image: url(images/ill_ml_2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  padding-top: 2rem;
  margin: auto;
  }
  }
  @media screen and (max-width:768px) {
  .mail_member_box,
  .monitor_member_box{
  
    padding: 50px 2rem 0;
  }
  }
  
  @media screen and (max-width:560px) {
  
  .mail_member_box p::after{
  width:100%;
  height: 45vw;
  }
  
  .monitor_member_box p::after{
  width:100%;
  height: 45vw;
  }
  }

  /*　ログイン画面
  -------------------------*/

  .page_container {
    width: 100%;
    }
    #wpmem_login_form{
        width:800px;
        margin: auto;
    }
    #wpmem_login_form legend{
        display: none;
    }
    #wpmem_login_form label{
        display: block;
        font-size:21px;
    }

    #wpmem_login_form fieldset{
        width:100%;
        display: grid;
        grid-template-areas: 
        "a b"
        "c d"
        "e e"
        "g g"
        "h h";
        align-items: center;
        grid-template-columns: 200px 600px;
        padding: 0 0 6rem;
        margin: 0;
        border: 0;
        row-gap: 40px;
}

    .div_text input[type=text]{
      width:100%;
      padding: 1em;
      height: 80px;
      border-radius: 10px;
      border:1px solid #387dce;
      font-size: 1.2rem;
    }
    .div_text input[type=password]{
      width:100%;
      padding: 1em;
      height: 80px;
      border-radius: 10px;
      border:1px solid #387dce;
      font-size: 1.2rem;
    }


    .button_div{
        position: relative;
        text-align: center;
        grid-area: e;
    }

    .button_div input[type=checkbox]{
      width:initial;
      display: inline-block;
      border-radius: 10px;
      border:1px solid #387dce;
  }

    .button_div #rememberme{
        display: inline-block;
        width:21px;
        height:21px;
        vertical-align: bottom;
        padding-bottom: 6px;
    }
    #wpmem_login_form label[for=rememberme]{
        display: inline-block;
    }

    .button_div input[type=submit]{
      grid-area: cc;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 450px;
      height: 80px;
      margin: 2rem auto 1rem;
      background-color: #ea4134;
      color: #fff;
      text-align: center;
      text-decoration: none;
      border-radius: 40px;
      border:0;
      font-size: 18px;
      font-weight: 600;
      background-image: url(images/ico_btn_arrow.png);
      background-repeat: no-repeat;
      background-position-y: center;
      background-position-x: calc(450px - 30px);
      transition: opacity 0.3s ease;
    }

    .link-text:nth-last-child(2){
        grid-area: h;
        margin-bottom: 0;
    }
    .link-text:last-child{
        grid-area: g;
        margin-bottom: -50px;
    }

    .link-text-forgot::before {
      content: "●";
    }
    .link-text-register::before {
      content: "●";
    }

@media screen and (max-width:1024px) {
    #wpmem_login_form{
        min-width:800px;
        width:80%;
    }
    #wpmem_login_form fieldset{
      grid-template-columns: 1fr 3fr;
      width:100%;
      display: block;
      padding: 0 0 6rem;
      margin: 0;
      border: 0;
    }
    #wpmem_login_form legend{
        display: none;
    }
    #wpmem_login_form label{
        display: block;
        font-size:21px;
        padding-top: 20px;
    }
    .link-text:nth-last-child(2) {
      margin-top: 2rem;
      margin-bottom: 0.5rem;
  }
    .div_text,
    .button_div{
        width: auto;
        padding-top: 20px;
    }
}
@media screen and (max-width:950px) {
  #wpmem_login_form{
    min-width:initial;
    width:80%;
  }
    #wpmem_login_form fieldset{
      width:100%;
      display: block;
      padding: 0 0 6rem;
      margin: 0;
      border: 0;
}
}


@media screen and (max-width:800px) {
    #wpmem_login_form{
        min-width:initial;
        width:80%;
    }

    .button_div input[type=submit]{
        max-width:450px;
        width:100%;
        background-position-x:calc(100% - 30px);
    }
    .div_text input[type=text]{
        height: 60px;
    }
    .div_text input[type=password]{
        height: 60px;
    }
}

  /* 会員登録フォーム
  ------------------- */
  fieldset{
    border: 0;
    margin-inline: 0;
    margin: 0;
    padding-inline: 0;
    padding: 0;
    }
    legend{
    display: none;
    }
    .new_regster_box{
        width:100%;
        background-color: #C1DEF4;
        padding-top: 120px;
        padding-bottom: 200px;
    }
    .new_regster_head h2{
        text-align: center;
        color:#387dce;
        font-size: 44px;
    margin: 0;
    padding: 0;
    }
    .new_regster_read{
      width:1000px;
      margin: 120px auto;
      padding: 0;
    }
    .register_status{
      width: 1000px;
      margin: 60px auto;
      font-weight: 700;
      font-size:1.2em;
    }

    .register_links{
      width: 1000px;
      margin: 60px auto 0;
      padding-bottom: 100px;
      overflow: hidden;
      list-style: "●";
    }

    .new_regster_box #wpmem_reg{
    max-width:1300px;
    width:100%;
    margin: 0 auto;
    }

    #wpmem_register_form{
      display: block;
      width: 100%;
    }
    #wpmem_register_form fieldset{
    display: grid;
    grid-auto-columns: 1fr; 
    grid-template-columns: 1fr 4fr;
    row-gap: 2rem;
    column-gap: 1.6rem;
    grid-template-areas: 
      "head head"
      "a a"
      "b b"
      "c c"
      "d e"
      "f g"
      "h i"
      "j k"
      "ja l"
      "m n"
      "o o"
      "p p"
      "q q";
      align-items: center
    }
    
    div.req-text{
    display: none;
    }
#wpmem_register_form div.req-text:nth-child(4){
  text-align: right;
  color: #f00;
  display: block;
  grid-area: b;
  padding-right: 1rem;
  font-size: 1.2rem;
}
#wpmem_register_form div.req-text:nth-child(4) p{
  margin: 0;
  padding: 0;
}
    
    
    #wpmem_register_form h2{
    grid-area: a;
    border-radius: 40px;
    font-weight: normal;
    height: 80px;
    background-color: #000;
    color: #fff;
    text-align: center;
    width: 100%;
    align-content: center;
    }
    #wpmem_register_form h2 + p{
      grid-area: c;
    width: 100%;
    text-align: right;
    color:#f00;
    }
    #wpmem_register_form label{
    display: block;
    font-size:1.4em;
    text-align: right;
    }
    #wpmem_register_form .req{
      color:#f00;
    }
    .div_multicheckbox{
      display: flex;
      flex-wrap: nowrap;
    }
    
    /* 入力フォーム */
    
    #wpmem_register_form input {
    width: 100%;
    padding: 16px;
    border: 1px solid #387dce;
    border-radius: 10px;
    box-sizing: border-box;
    }
    
    #wpmem_register_form input#last_name,
    #wpmem_register_form input#first_name{
      width:50%;
    }
    
    /*-- submit button --*/
    #wpmem_register_form .button_div{
      grid-area: q;
    }
    
    
    
    #wpmem_register_form label.multicheckbox{
    grid-area: d;
    }
    
    
    #wpmem_register_form .div_multicheckbox{
    grid-area: e;
    }
    #wpmem_register_form input[type=checkbox],
    #wpmem_register_form input[type=radio] {
      width:24px;
      height: 24px;
      vertical-align: text-bottom;
    }
    #wpmem_register_form input[type=checkbox] + label,
    #wpmem_register_form input[type=radio] + label {
      padding-right: 1rem;
      display: inline-block;
    }
    #wpmem_register_form .div_radio:last-child input[type=checkbox] + label{
      padding-bottom: 1rem;
    }
    
    #wpmem_register_form select{
      box-sizing: border-box;
    height: 80px;
    border-radius: 10px;
    border: 1px solid #387dce;
    padding-left: 1rem;
    padding-right: 2rem;
    font-size: 21px;
    width: calc(100% / 2);
    }
    
    #wpmem_register_form .div_text{
      font-size: 1.4em;
    }
    .fullname{
      font-size: 1.4em;
      margin: 0;
      padding: 0;
      text-align: right;
    }
    #wpmem_register_form input[type=text]#billing_postcode{
    width:calc(100% / 3);
    height: 80px;
    border-radius: 10px;
    
    }
    #wpmem_register_form input[type=text]#billing_state,
    #wpmem_register_form input[type=text]#billing_city{
    width:calc(100% / 2);
    height: 80px;
    border-radius: 10px;
    }
    
    #wpmem_register_form input[type=date]{
    width:50%;
    height: 80px;
    border-radius: 10px;
    font-size: 1.2rem;
    }
    
    #wpmem_register_form label[for=user_email]{
    grid-area: f;
    }
    
    #wpmem_register_form .div_text:has(input[name=user_email]){
    grid-area: g;
    }
    
    #wpmem_register_form input[type=email] {
        height: 80px;
        border-radius: 10px;
        font-size: 1.2rem;
    }
    
    #wpmem_register_form label[for=username]{
    grid-area: h;
    }
    #wpmem_register_form .div_text:has(input[name=username]){
    grid-area: i;
    }
    
    #wpmem_register_form label[for=last_name],
    #wpmem_register_form label[for=first_name]{
    display: none;
    }
    #wpmem_register_form p.fullname{
    grid-area: j;
    }
    #wpmem_register_form .div_text:has(input[name=last_name]){
    grid-area: k;
    }
    #wpmem_register_form .div_text:has(input[name=first_name]){
    grid-area: l;
    }
    #wpmem_register_form label[for=company_name]{
    grid-area: m;
    }
    #wpmem_register_form .div_text:has(input[name=company_name]){
    grid-area: n;
    }
    #wpmem_register_form .div_text:has(input[name=tos]){
    grid-area: o;
    text-align: center;
    }
    #wpmem_register_form .button_div input[type=submit]{
      width: 450px;
      height: 80px;
      border-radius: 40px;
      background-image: initial;
    }
    
    #monitor{
      grid-area: p;
      padding-top: 3rem;
    }

    #monitor h2{
      grid-area: ma;
    }
    
    .inner_monioer_block{
    visibility: visible;
      display: grid;
      row-gap: 2rem;
      column-gap: 1.6rem;
      align-items: baseline;
      grid-auto-columns: 1fr; 
      grid-template-columns: 1fr 4fr;
      grid-template-areas:
      "ma ma"
      "mb mb"
      "mc md"
      "me mf"
      "mg mh"
      "mi mj"
      "mk ml"
      "mm mn"
      "mo mp"
      "mq mr"
      "ms mt"
      "mu mv"
      "mw mx"
      "my mz"
      "m1 m2"
      "m3 m4"
      "m5 m6"
      "m7 m8"
      ;
    }
    
    .inner_monioer_block div.req-text{
      display: block;
      padding-right: 1rem;
      color: #f00;
      grid-area: ma;
      text-align: right;
      font-size: 1.2rem;
    }
    .panel_monitor_msg{
      grid-area: mb;
      text-align: center;
    }
    .panel_monitor_msg p{
      margin: 0;
      padding: 0;
      font-size: 1.2rem;
    }
    
    .div_radio{
      display: flex;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      flex-basis: auto;
    }
    .div_radio:last-child{
      display: block;
    }
    .div_radio:last-child label{
      text-align: left;
    }

    label[for=date_of_birth].date{
      color:#000;
    }

    .wpmem_msg{
      width: 100%;
      max-width: 1000px;
      margin: -2rem auto 2rem;
      text-align: center;
      color: #f00;
      font-size: 1.2rem;
    }

    
    /* マイページ
    -------------------------- */
    .mypage_head{
      max-width: 1300px;
      width:100%;
      margin: auto;
      display: flex;
      justify-content: space-between;
      flex-direction: row-reverse;
      padding-bottom: 180px;
    }
    .mypage_username{
      font-size: 1.4em;
      text-align: left;
    }
    .mypage_rank{
      font-size: 1em;
      text-align: right;
    }
    .mypage_rank span{
      background-color: #c1def4;
      border-radius: 60px;
      padding: 16px 20px;
      margin-right: 1rem;
    }
    .mypage_container{
      width:100%;
      max-width: 980px;
      margin: 0 auto 240px;
    }
    .mypage_container h2{
      border-bottom:10px solid #387dce;
      padding-bottom: 0.4rem;
    }

.mypage_menu_list p{
  margin: 0;
  padding: 0;
}
.mypage_menu_list p:before{
  content: "●";
  text-decoration: none;
  color:#000;
}

.mypage_profile_block ul{
  display: none;
}


@media screen and (max-width:1024px){
      .new_regster_box {
        padding-top: 2rem;
    }
      .new_regster_read {
        width: 90%;
        margin: 2rem auto;
        padding: 0;
    }
    .register_status{
      width: 90%;
      margin: 2rem auto;
      padding: 0;
    }

    .register_links{
      width: 90%;
      margin: 2rem auto 0;
      padding-bottom: 4rem;
    }
    #wpmem_register_form {
        width: 90%;
        margin: auto;
    }
    #wpmem_register_form h2 {
      font-size: 1rem;
      padding-top:1rem;
      padding-bottom:1rem;
      border-radius: 40px;
      font-weight: normal;
      background-color: #000;
      color: #fff;
      text-align: center;
      width: 100%;
      align-content: center;
    }
    
    #wpmem_register_form fieldset{
      display: block;
    }
    .inner_monioer_block{
      display: block;
    }
    .panel_monitor_msg {
        text-align: left;
        width:100%;
        margin: auto;
    }
    #wpmem_register_form label {
      font-size: 1.2rem;
      display: inline-block;
      padding-top: 1rem;
      padding-bottom: 0;
  }
    #wpmem_register_form #monitor label {
        padding-top: 2rem;
        padding-bottom: 0;
    }
    #wpmem_register_form #monitor .div_radio label {
      padding: 0 0 0.5rem;
    }

    .div_multicheckbox {
        display: block;
    }
    
    #wpmem_register_form input {
      height: initial;
    }
    

    #wpmem_register_form input[type=text]#billing_postcode {
        width: calc(100% / 3);
        height: initial;
        margin: 0;
        font-size: 1.2rem;
    }

    #wpmem_register_form input[type=text]#billing_state, #wpmem_register_form input[type=text]#billing_city {
        width: calc(100% / 2);
        height: initial;
        margin: 0;
        font-size: 1.2rem;
    }
    #wpmem_register_form input[type=date] {
        width: 70%;
        height: initial;
        margin: 0;
        font-size: 0.95rem;
    }
    #wpmem_register_form select {
        height: initial;
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: 0.95rem;
        width: calc(100% *3 / 4);
        margin-top: 0.5rem;
    }
    #wpmem_register_form .button_div input[type=submit] {
      max-width: 450px;
        width: 100%;
        height: 80px;
        border-radius: 40px;
        background-image: initial;
    }
    
    #wpmem_register_form .div_text{
      font-size: 1rem;
    }
    .fullname {
        font-size: 1.2em;
        padding-top: 2em;
        text-align:left;
    }
    #wpmem_register_form .div_text input[type=email] {
        height: initial;
        font-size: 1rem;
        margin: 0;
        border-radius: 10px;
    }
    .div_radio {
        display: block;
    }
    #wpmem_register_form label.radio + .div_radio{
      padding-top: 1rem;
    }
    .wpmem_msg{
      max-width:initial;
      width:90%;
      margin: 2rem auto;
      text-align: left;
      color:#f00;
      font-size: 1.1em;
    }


/* マイページ
    -------------------------- */
    .mypage_head{
      max-width: initial;
      width:calc(100% - 80px);
      display: block;
      padding-bottom: 100px;
    }
    .mypage_username{
      overflow: hidden;
      text-align: left;
    }
    .mypage_rank{
      text-align: left;
      padding-bottom: 1rem;
      margin-bottom: 2rem;
    }
    .mypage_rank span{
      background-color: #c1def4;
      border-radius: 60px;
      padding: 16px 20px;
      margin-right: 1rem;
    }
    .mypage_container{
      max-width: initial;
      width:calc(100% - 80px);
      margin: 0 auto 200px;
    }
    .mypage_container h2{
      border-bottom:10px solid #387dce;
      padding-bottom: 0.4rem;
    }
    }



    /* 規約フォーマット
    ------------------------ */
    .terms_container{
      max-width:980px;
      width:100%;
      margin: 8rem auto;
    }
    @media screen and (max-width:768px) {
      .terms_container{
      max-width:initial;
      width:90%;
      margin: 4rem auto;
    }
      
    }

    /* 退会フォーマット
    ------------------------ */
    .delete_container{
      max-width:980px;
      width:100%;
      margin: 8rem auto;
    }
    #plugin_delete_me_shortcode_form{
      width:fit-content;
      margin: 0 auto 4rem;

    }
    p[for=plugin_delete_me_shortcode_password]{
      font-size: 1.2rem;
    }
    label[for=plugin_delete_me_shortcode_password]{
      padding-right: 2rem;
    }
    #plugin_delete_me_shortcode_password{
    width: 80%;
    padding: 1em;
    height: 80px;
    border-radius: 10px;
    font-size:1.2rem;
    border: 1px solid #387dce;
    }
    #plugin_delete_me_shortcode_form input[type=submit]{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 450px;
        height: 80px;
        margin: 2rem auto 1rem;
        background-color: #ea4134;
        color: #fff;
        text-align: center;
        text-decoration: none;
        border-radius: 40px;
        border: 0;
        font-size: 18px;
        font-weight: 600;
        transition: opacity 0.3s ease;
    }

    

    @media screen and (max-width:768px) {
      .delete_container{
      max-width:initial;
      width:90%;
      margin: 4rem auto;
    }
      
    }



    .membership_box{
      background-color: #c1def4;
      width:100%;
      overflow: hidden;
    }
    .membership_box .container{
      width:100%;
      max-width: 1300px;
      margin: 45px auto;
      position: relative;
    }
    .membership_box .container:after{
      display: block;
      content: "";
      width:396px;
      height:319px;
      background-image: url(images/ill_ml_3.png);
      background-repeat: no-repeat;
      background-position: center;
      position: absolute;
      bottom: 20px;
      left: -100px;
  }
  .membership_box h1 {
      color: #387DCE;
      font-size: 2em;
      margin: 0;
      padding-bottom: 60px;
  }
  .membership_box h1 span {
      color: #000;
      letter-spacing: 0;
      font-size: 0.5em;
      padding-left: 1em;
      vertical-align: 30%;
  }
  
  .mail_member_box,
  .monitor_member_box{
    width:1000px;
    background-color: #fff;
    border-top-left-radius: 90px;
    border-bottom-right-radius: 90px;
    padding: 50px 90px;
    overflow: hidden;
    margin-left: 300px;
    margin-bottom: 40px;
  }
  .mail_member_box h2{
      color: #387DCE;
      font-size: 2em;
      margin: 0;
  }
  .mail_member_box h2::before{
  display: block;
  content: url(images/ill_ml_1.png);
  float: right;
  padding-left: 100px;
  }
  .monitor_member_box h2{
      color: #387DCE;
      font-size: 2em;
      margin: 0;
  }
  .monitor_member_box h2::before{
  display: block;
  content: url(images/ill_ml_2.png);
  float: right;
  padding-left: 100px;
  }
  
  .member_form_box{
    text-align: center;
    padding: 30px 0 60px;
  }
  
  .btn_member_regster{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width:320px;
    height: 80px;
    background-color: #ea4134;
    color:#fff;
    text-align: center;
    text-decoration: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    background-image: url(images/ico_btn_arrow.png);
    background-position-x: calc(320px - 36px);
    background-position-y: center;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease;
  }

  .btn_member_regster:hover{
    opacity: 0.7;
    text-decoration: none;
  }
.login_now_blocks{
  padding-bottom: 100px;
  width:100%;
  max-width: 980px;
  margin: auto;
}
.login_now_blocks p {
  margin: 0;
}
.login_status{
  padding-bottom: 50px;
}

#wpmem_profile_form legend,
#wpmem_pwdchange_form legend{
  grid-area: hh;
  display: block;
  text-align: center;
  font-size: 1.4rem;
  background-color: #000;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 40px;
  color: #fff;
  margin-top: 0;
  overflow: hidden;
  clear: both;
}
#wpmem_pwdchange_form fieldset {
  display: grid;
  grid-auto-columns: 1fr 3fr;
  grid-template-areas:
      "hh hh"
      "a b"
      "c d"
      "e e";
  align-items: center;
  row-gap: 2rem;
  padding-top: 2rem;
}
.req{
  color: #f00;
  padding-left: 0.3rem;
}
#wpmem_profile_form label {
  display: block;
  font-size: 1.2em;
  text-align: right;
  text-wrap: nowrap;
}

#wpmem_profile_form label.multicheckbox{
  text-align: left;
  display: inline-block;
}
#wpmem_profile_form input[type=email] {
  height: 60px;
}

#wpmem_profile_form fieldset {
  display: grid;
  grid-template-areas:
      "hh hh"
      "tt tt"
      "aa ba"
      "ab bb"
      "ac bc"
      "ac bd"
      "ad be"
      "ae ae"
      "af af"
      "ag ag";
      align-items: baseline;
  grid-auto-columns: 1fr 3fr;
  row-gap: 1rem;
  column-gap: 1rem;
  padding: 0 0 2rem;
  margin: 2rem 0;
}

#wpmem_profile_form h2{
  grid-area: hh;
}
#wpmem_profile_form h2+div.req-text{
  grid-area: tt;
  display: block;
  width: 100%;
  color: #f00;
}

#wpmem_profile_form label[for=registration_type]{
  grid-area: aa;
}
#wpmem_profile_form .div_multicheckbox{
  grid-area: ba;
}

#wpmem_profile_form label[for=user_email]{
  grid-area: ab;
}

#wpmem_profile_form p.fullname{
  grid-area: ac;
  font-size: 1.2em;
}
#wpmem_profile_form label[for=company_name]{
  grid-area: ad;
}
#wpmem_profile_form .div_text:nth-of-type(8){
  font-size: 1.2em;
  text-align: center;
  grid-area: ae;
}
#wpmem_profile_form #monitor{
  grid-area: af;
}
#wpmem_profile_form .button_div{
  grid-area: ag;
}

#wpmem_profile_form label[for=last_name],
#wpmem_profile_form label[for=first_name]{
  display: none;
}


#wpmem_profile_form input#billing_postcode {
  width: calc(100% / 3);
  height: 80px;
  border-radius: 10px;
  font-size: 1.2rem;
}
#wpmem_profile_form input[type=email]{
  width: 100%;
  padding: 1em;
  height: 80px;
  border-radius: 10px;
  font-size: 1.2rem;
  border: 1px solid #387dce;
}
#wpmem_profile_form input[type=checkbox]{
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: baseline;
  padding-bottom: 6px;
}
#wpmem_profile_form input[type=radio]{
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: text-bottom;
  padding-bottom: 6px;
}
#wpmem_profile_form input[type=radio]+label{
  text-align: left;
  display: inline-block;
}
#wpmem_profile_form div_text input[type=text] {
  font-size: 1.2rem;
}
#wpmem_profile_form input[type=date] {
  width: 50%;
  height: 80px;
  border-radius: 10px;
  font-size: 1.2rem;
  border: 1px solid #387dce;
}
#wpmem_profile_form select {
  box-sizing: border-box;
  height: 80px;
  border-radius: 10px;
  border: 1px solid #387dce;
  padding-left: 1rem;
  padding-right: 2rem;
  font-size: 21px;
  width: calc(100% / 2);
}

#wpmem_pwdreset_form label,
#wpmem_getusername_form label {
  display: block;
  font-size: 21px;
}
#wpmem_pwdreset_form fieldset {
  display: grid;
  grid-auto-columns: 1fr 3fr;
  grid-template-areas:
      "hh hh"
      "a b"
      "c c"
      "e e";
  align-items: center;
  row-gap: 2rem;
  padding-top: 2rem;
}

#wpmem_pwdreset_form legend{
  display: block;
  grid-area: hh;
    border-radius: 40px;
    font-weight: normal;
    height: 80px;
    background-color: #000;
    color: #fff;
    text-align: center;
    width: 100%;
    align-content: center;
}
#wpmem_pwdreset_form label[for=user]{
  grid-area: a;
}
#wpmem_pwdreset_form .div_text{
  grid-area: b;
}
#wpmem_pwdreset_form .button_div{
  grid-area: c;
}
#wpmem_pwdreset_form .link-text{
  grid-area: e;
  text-align: center;
  margin: -2rem;
  overflow: hidden;
}


#wpmem_getusername_form fieldset {
  display: grid;
  grid-auto-columns: 1fr 3fr;
  grid-template-areas:
      "hh hh"
      "a b"
      "c c"
      "e e";
  align-items: center;
  row-gap: 2rem;
  padding-top: 2rem;
}

#wpmem_getusername_form legend{
  display: block;
  grid-area: hh;
    border-radius: 40px;
    font-weight: normal;
    height: 80px;
    background-color: #000;
    color: #fff;
    text-align: center;
    width: 100%;
    align-content: center;
}
#wpmem_getusername_form label[for=user_email]{
  grid-area: a;
}
#wpmem_getusername_form .div_text{
  grid-area: b;
}
#wpmem_getusername_form .button_div{
  grid-area: c;
}
#wpmem_getusername_form .link-text{
  grid-area: e;
  text-align: center;
  margin: -2rem;
  overflow: hidden;
}


  @media screen and (max-width:1300px) {
    .membership_box h1 {
      padding-left: 1.5rem;
  }
    .membership_box .container{
      max-width: initial;
    }
    .mail_member_box,
  .monitor_member_box{
    width:1000px;
    margin-left: calc(100% - 1000px);
  }
    
  }
  
  @media screen and (max-width:1024px) {
    #wpmem_profile_form fieldset {
      display: block;
    }
    #wpmem_profile_form label{
      text-align: left;
      padding-bottom: 0;
        padding-top: 2rem;
    }
    #wpmem_profile_form .div_multicheckbox label{
      padding-bottom: 0;
        padding-top: 1rem;
    }
    #wpmem_profile_form fieldset label{
      text-align: left;
    }

    #wpmem_profile_form .inner_monioer_block label {
      text-align: left;
      display: inline-block;
      padding-top: 2rem;
      margin-bottom: 0;
      padding-bottom: 1rem;
    }
    #wpmem_profile_form .inner_monioer_block .div_text{
      padding-top: 0;
    }
    #wpmem_profile_form .inner_monioer_block .div_radio label {
      padding-top: initial;
    }
    #wpmem_profile_form p.fullname{
      padding-top: 1rem;
    }
    .membership_box .container:after{
      display: none;
      content: "";
      width:396px;
      height:319px;
      background-image: url(images/ill_ml_3.png);
      background-repeat: no-repeat;
      background-position: center;
      position: absolute;
      bottom: 20px;
      left: -100px;
  }
  
  .mail_member_box,
  .monitor_member_box{
    width:calc(100% - 3rem);
    margin-left: 30px;
    margin-right: 30px;
    padding: 50px 50px 0;
  }
  .mail_member_box h2::before,
  .monitor_member_box h2::before{
  display: none;
  float: initial;
  padding-left: initial;
  }
  .mail_member_box p::after{
  display: block;
  content: "";
  width: 368px;
  height: 250px;
  background-image: url(images/ill_ml_1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  padding-top: 2rem;
  margin: auto;
  }
  
  .monitor_member_box p::after{
  display: block;
  width: 328px;
  height: 250px;
  content: "";
  background-image: url(images/ill_ml_2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  padding-top: 2rem;
  margin: auto;
  }
  
  }


  @media screen and (max-width:768px) {
    #wpmem_profile_form label.multicheckbox{
    padding-top: 1rem;
    }
  .mail_member_box,
  .monitor_member_box{  
    padding: 50px 2rem 0;
  }
  .login_status{
    padding-bottom: 3rem;
  }
  #wpmem_pwdchange_form fieldset {
    display: block;
  }
  #wpmem_pwdchange_form fieldset {
    display: block;
  }
  #wpmem_pwdchange_form label {
    padding-top: 1rem;
    display: block;
}
  }
  
  @media screen and (max-width:560px) {
  
  .mail_member_box p::after{
  width:100%;
  height: 45vw;
  }
  
  .monitor_member_box p::after{
  width:100%;
  height: 45vw;
  }
  }

/*SNSブロック
        -----------------------*/
      .sns_box{
          box-sizing: border-box;
          max-width: 980px;
          width:100%;
          border-radius: 20px;
          border:#9e9e9e 1px solid;
          display: flex;
          justify-content: center;
          padding: 45px 0;
          margin: 0 auto 3rem;
      }
      .sns_text{
          font-size:16px;
          font-weight: 700;
      }
      .sns_links{
          margin: 0;
          padding: 0;
          list-style-type: none;
      }
      .sns_links li{
          display: inline-block;
          margin-left: 58px;
      }

      /* コメント
      ------------------- */
      .comments_box{
          width:100%;
          background-color: #c1def4;
          padding-top: 100px;
          overflow: hidden;
      }
      .comments_box hr{
          margin-top: 3rem;
          border:1px solid #fff;
          background-color: #fff;
      }
      .comment_title{
          text-align: center;
          padding-bottom: 44px;
      }
      .comment_title h2{
          font-size:46px;
          color: #387DCE;
          margin: 0;
      }
      .comment_title h3{
          font-size:16px;
          color:#000;
          margin: 0;
          padding: 0;
      }
      .comment_container{
          max-width:980px;
          width:100%;
          border-radius: 10px;
          background-color: #fff;
          margin: auto;
      }
      .comment_container ul{
          margin: 0;
          padding: 0;
          list-style-type: none;
      }
      .comment_container li{
          padding: 2rem;
          border-bottom: #d4eaf6 solid 1px;
      }
      .must-log-in{
        padding-bottom: 100px;
      }


      .comment-author{
          font-weight: 900;
      }
      .avatar,
      .commentmetadata,
      .reply{
          visibility: hidden;
          display: none;
      }
      cite.fn {
        font-style: normal;
      }
      .fn .url{
          text-decoration: none;
          font-style: normal;
          color:#000;
      }

      .comment-respond{
          width:100%;
          max-width: 980px;
          margin: auto;
      }
      .comment-reply-title span{
        color:#387DCE;
      }
      textarea#comment{
          border-radius: 10px;
          border:0px;
          width: 100%;
          height: 340px;
          padding: 1rem;
          font-size: 1.13rem;
      }
.comment-form-comment {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.comment-form-comment label{
  display: block;
  font-size:21px;
  font-weight: 900;
  padding: 1rem;
  text-wrap: nowrap;
}
.form-submit{
  text-align: center;
}
.form-submit #submit{
  background-color: #387dce;
  width:450px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 22px;
  border:0px;
  border-radius: 40px;
  margin: 1rem auto 6rem;
}
.form-submit #submit:hover{
  opacity: 0.65;
}
.moreComment_button {
  text-align: right;
  font-weight: 600;
}

@media screen and (max-width:1024px) {
        /* コメント
      ------------------- */
      .comment_container {
        max-width: initial;
        width: calc(100% - 60px);
    }
    .comment-respond {
      width: calc(100% - 60px);
      max-width: initial;
      margin: auto;
  }
  .logged-in-as {
    padding-bottom: 2rem;
  }
  .comment-form-comment {
        display: block;
    }
}

      @media screen and (max-width:768px) {
      /*SNSブロック
      -----------------------*/
          .sns_box{
              display: block;
              padding: 1rem 0 3rem;
          }
          .sns_text{
          text-align: center;
          padding-bottom: 1rem;
          }
          .sns_links{
              text-align: center;
          }
          .sns_links li{
              margin-left: 1rem;
              margin-right: 1rem;
          }
      /* コメント
      ------------------- */
      .comment-form-comment {
        display: block;
    }
    .comment-form-comment label {
      padding: 1rem 0;
  }
      .comment-respond{
        margin: auto;
        width:calc(100% - 40px);
      }
      .must-log-in{
        padding-bottom: 3rem;
      }
      .form-submit #submit {
        max-width: 450px;
        width: 100%;
    }
}


      @media screen and (max-width:380px) {
      /*SNSブロック
      -----------------------*/
          .sns_links li{
              margin-left: 0.5rem;
              margin-right: 0.5rem;
          }
      /* コメント
      ------------------- */
      }

      .flex-control-paging li a.flex-active {
        background: #ea4134 !important;
      }

      .flex-control-paging li a {
        background: #8bc1f2 !important;
    }

/*  メルマガ会員
---------------------- */
.cat_approval{
  padding-top: 170px;
  padding-bottom: 0 auto -2rem;
  text-align: center;
}
.cat_approval h1{
  padding: 0;
  margin: 0 auto;
  background-image: url(images/ico_approval.png);
  background-repeat: no-repeat;
  background-position: center;
  width:148px;
  height: 145px;
  font-size: 0;
}



@media screen and (max-width:768px) {
/*  メルマガ会員
---------------------- */
.cat_approval{
  padding-top: 150px;
  padding-bottom: 0 auto -2rem;
  text-align: center;
}
}