@charset "utf-8";
/*
Theme Name: RUSH DESIGN THEME
Author: RUSH DESIGN
Version: 1.0.0
*/
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/******************************************************
リセット
******************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
  font-weight: 400;
	font: inherit;
	vertical-align: middle;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body {
  margin: 0;
	padding: 0;
	border: 0;
  color: #333;
	font-size: 100%;
  font-weight: 400;
	font: inherit;
	vertical-align: middle;
  word-break : break-all;
  background: #fff;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-size: 16px;
	font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  counter-reset: 0;
}
@media screen and (max-width: 1024px) {
  body {
    position: relative;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
    counter-reset: 0;
  }
}
main {
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.5;
}
table, th, td {
  border-collapse: collapse;
  font-weight: 400;
}
dl, dt, dd {
  margin: 0;
  padding: 0;
}
p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul, ol {
  text-align: left;
}
li {
  font-size: 1.6rem;
}
@media screen and (max-width:1024px) {
  li {
    font-size: 1.4rem;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #333;
  text-decoration: none;
  vertical-align: baseline;
  border:none;
  outline:none;
}
span {
  vertical-align: baseline;
}
*:focus {
  outline: none;
}
/******************************************************
animate.css カスタマイズ
******************************************************/
@keyframes fadeInUp60 {
  from {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp60 {
  animation-name: fadeInUp60;
  animation-duration: 1s;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@keyframes boxShadow {
  0% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  50% {
    opacity: 1;
    box-shadow: none;
  }
  100% {
    box-shadow: -3rem 3rem 0 0 rgba(238,238,238,1);
  }
}
.fadeInUpShadow {
  animation-name: boxShadow;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
/******************************************************
回り込み解除 ※解除したいclassを記述
******************************************************/
.clear:after,
.clearfix:after,
.inner:after,
.col:after,
.box:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}
/******************************************************
領域指定
******************************************************/
.pc, .tab, .sp {display:none!important;}
/* SP */
@media screen and (max-width: 767px){
  .inner {
    margin: 0 1.5rem;
    position: relative;
  }
  .sp-left {
    text-align: left!important;
  }
  .sp {
    display: block!important;
  }
}
/* PC */
@media screen and (min-width: 768px){
  .inner {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    box-sizing: border-box;
  }
  .pc {
    display: block!important;
  }
}
/******************************************************
基本フォント
******************************************************/
/* 位置 */
.text-center {text-align: center;}
.text-right {text-align: right;}
.text-left {text-align: left;}
/* カラー */
.color_black {color: #464646;}
.color_white {color: #fff;}
.color_red {color: #333;}
.blue {color: #333;}
/******************************************************
各種フォント
******************************************************/
.serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.text-xlarge {font-size: 3.6rem;}
.text-large {font-size: 2.7rem;}
.color-red {color: #333;}
/******************************************************
iPhoneリセット
******************************************************/
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
input[type=text], input[type=email], textarea, select {
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  outline: none;
  -webkit-appearance:none;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #ccc;
}
/******************************************************
パンくず
******************************************************/
#breadcrumb {
  padding: 1.2em 0;
}
#breadcrumb br {
  display: none;
}
#breadcrumb li {
  display: inline-block;
  color: #333;
  font-size: 1.6rem;
}
@media screen and (max-width:767px) {
  #breadcrumb li {
    font-size: 1.2rem;
  }
}
#breadcrumb li a {
  color: #333;
}
#breadcrumb li a:hover {
  color: #333;
}
#breadcrumb li a.breadcrumb_home:before {
  content: "\f015";
  font-family: "FontAwesome";
  margin-right: .5em;
}
#breadcrumb li:after {
  content: "\f105";
  font-family: "FontAwesome";
  margin: 0 .5em;
}
#breadcrumb li:last-child:after {
  content: none;
  margin: 0;
}
/******************************************************
ページネーション
******************************************************/
#pagination {
  margin-top: 3rem;
}
#pagination ul {
  text-align: center;
}
#pagination li {
  display: inline-block;
  margin-right: .3rem;
  font-size: 1.2rem;
}
#pagination li:last-child {
  margin-right: 0;
}
#pagination li a,
#pagination li span {
  display: block;
  width: 3rem;
  height: 3rem;
  color: #fff;
  line-height: 3rem;
  background: #ccc;
}
#pagination li a:hover {
  background: #333;
}
#pagination li span.current {
  background: #333;
}
#pagination li span.dots {
  color: #333;
  background: none;
}
/******************************************************
固定ページ
******************************************************/
@media screen and (min-width: 1025px) {
  /******************************************************
  ページ共通
  ******************************************************/
  #page,
  #post,
  #archive {
    padding: 8rem 0;
  }
  /******************************************************
  キャッチコピー
  ******************************************************/
  #page_catch {
    position: relative;
    margin-bottom: 3rem; 
    background-image: linear-gradient(45deg, rgba(253, 176, 176, 1), rgba(246, 149, 149, 1)); 
  }
  #page_catch .catch_cover {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    box-sizing: border-box;
  }
  #page_catch h1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 6 / 1;
  }
  #page_catch h1 .jap {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
  }
  /******************************************************
  タイトル
  ******************************************************/
  #page .page_title_a {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 1.2em;
    font-size: 3rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
  }
  #page .page_title_a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: .5em;
    height: .5em;
    margin-top: -.2em;
    line-height: 1;
    background: #f69595;
  }
  #page .page_title_b {
    margin-bottom: 1.2em;
    padding-bottom: .8em;
    font-size: 2.4rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;     
    border-bottom: 1px solid #ccc;
  }
  #page .page_title_service {
    margin-bottom: 1.2em;
    font-size: 3rem;
    font-weight: 700;
  }
  #page .page_contact_title {
    margin-bottom: 1.2em;
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
  }
  /******************************************************
  パーツ
  ******************************************************/
  #page .btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #page .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    height: 60px;
    color: #fff;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;     
    border-radius: 30px;
    background: #f69595;
    border: 1px solid #f69595;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }
  #page .btn a:hover {
    color: #f69595;
    background: #fff;
  }  
  /* カバー */
  #page .inner *:last-child,
  #page .page_section *:last-child,
  #page .box *:last-child,
  #page .s_box *:last-child {
    margin-bottom: 0;
  }
  #page .page_section {
    margin-bottom: 8rem;
  }
  #page .box {
    margin-bottom: 6rem;
  }
  #page .s_box {
    margin-bottom: 3rem;
  }
  #page .bg_box {
    padding: 6rem;
    background: #f6f6f6;
  }
  #page p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #page p a {
    text-decoration: underline;
  }
  #page p a:hover {
    text-decoration: none;
  }
  #page .bold {
    font-weight: 600;
  }
  /* テーブル */
  #page .page_table_a table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid #ccc;
  }
  #page .page_table_a th,
  #page .page_table_a td {
    padding: 1.2em 0;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }
  #page .page_table_a th {
    width: 25%;
    font-weight: 600;
  }
  #page .page_table_b table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  #page .page_table_b th,
  #page .page_table_b td {
    padding: 1.2em;
    text-align: left;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  #page .page_table_b th {
    font-weight: 600;
    text-align: center;
    background: #f6f6f6;
  }  
  /* Googleマップ */
  #page .map {
    position: relative;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    overflow: hidden;    
  }
  #page .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%; 
  }  
  #page .procedure_list .list {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }  
  #page .procedure_list .list .title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;       
  }
  #page .procedure_list .list .comment {
    margin-bottom: 3rem;
  }
  #page .greeting_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  #page .greeting_flex .image {
    width: 300px;
  }
  #page .greeting_flex .comment {
    width: calc(100% - 360px);
  }
  /******************************************************
  お問い合わせ
  ******************************************************/
  #page .contact_req {
    color: #f90;
  }
  #page .contact_tel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #page .contact_tel .tel_comment,
  #page .contact_tel .tel_number {
    width: calc(50% - 3rem);
  }
  #page .contact_tel .tel_number a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 10rem;
    color: #333;
    text-align: center;
    line-height: 1.3;
    background: #fff;
    border: 1px solid #333;
  }
  #page .contact_tel .tel_number a .time {
    font-size: 1.8rem;
  }
  #page .contact_tel .tel_number a .number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 600;
  }
  #page .contact_tel .tel_number a .number:before {
    display: block;
    content: "";
    width: 3rem;
    height: 3rem;
    margin-right: .5rem;
    background: url(/wp-content/uploads/images/icon_phone.webp) center center no-repeat;
    background-size: contain;
  }  
  #page .page_contact_form table .contact_req {
    margin-left: 1em;
  }
  #page .page_contact_form table {
    width: 100%;
    margin-bottom: 5rem;
    table-layout: fixed;
  }
  #page .page_contact_form th,
  #page .page_contact_form td {
    padding: 1.2em;
    background: #f6f6f6;
  }
  #page .page_contact_form tr:nth-child(n+2) th,
  #page .page_contact_form tr:nth-child(n+2) td {
    border-top: 10px solid #fff;
  }
  #page .page_contact_form th {
    width: 25%;
    font-weight: 700;
  }
  #page .page_contact_form table input,
  #page .page_contact_form table select,
  #page .page_contact_form table textarea {
    border: none;
  }
  #page .page_contact_form table input[type=text],
  #page .page_contact_form table input[type=email] {
    width: 100%;
    padding: .8em;
  }
  #page .page_contact_form table select {
    padding: .8em;
  }
  #page .page_contact_form table input[type=tel] {
    width: 25%;
    padding: .8em;
  }
  #page .page_contact_form table textarea {
    width: 100%;
    padding: .8em;
  }
  #page .page_contact_form table .mwform-checkbox-field {
    display: block;
    margin: 0!important;
  }  
  #page .page_contact_form .form_btn {
    text-align: center;
  }
  #page .page_contact_form .form_btn input[type=submit] {
    width: 360px;
    height: 8rem;
    color: #fff;
    font-size: 1.6rem;
    background: #f69595;
  }
  /******************************************************
  サイトマップ
  ******************************************************/ 
  #page .sitemap_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #h_nav_list .h_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #fff;
    line-height: 1.5;
  }
  #page .sitemap_list .list_title .eng {
    font-weight: 600;
    font-size: 3rem;  
  }
  #page .sitemap_list .list_title .jap {
    margin-left: 1em;
    font-size: 1.6rem;
    font-weight: 700;
  }
  #page .sitemap_list .list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #page .sitemap_list .list li {
    width: calc((100% / 2) - 15px);
    border-bottom: 1px solid #666;
  }
  #page .sitemap_list .list li a {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: .8em .4em;
    line-height: 1.5;
  }
  #page .sitemap_list .list li a:after {
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    line-height: 1;
    content: "\f105";
    font-family: "FontAwesome";
  }
  #page .sitemap_list .list li a .eng {
    font-size: 1.8rem;
    font-weight: 600;
  }
  #page .sitemap_list .list li a .jap {
    font-size: 1.4rem;
    font-weight: 700;
  }  
  /******************************************************
  お知らせ
  ******************************************************/  
  #archive .information_list {
    margin-bottom: 5rem;
  }
  #archive .information_list .list {
    border-bottom: 1px solid #ccc;
  }
  #archive .information_list .list:first-child {
    border-top: 1px solid #ccc;
  }
  #archive .information_list .list a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 3em 1em;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }
  #archive .information_list .list a:hover {
    color: #f69595;
  }  
  #archive .information_list .list a .time,
  #archive .information_list .list a .title {
    line-height: 1.5;
  }
  #archive .information_list .list a .time {
    width: 8em;
  }
  #archive .information_list .list a .title {
    width: calc(100% - 8em);
    font-weight: 400;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
  }  
  #archive .conference_list {
    margin-bottom: 5rem;
  }
  #archive .conference_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 3rem 0;
    border-bottom: 1px solid #ccc;
  }
  #archive .conference_list .list:first-child .box {
    border-top: 1px solid #ccc;
  }
  #archive .conference_list .list .image {
    width: 300px;
  }
  #archive .conference_list .list .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 340px);
    padding: 1em;
    box-sizing: border-box;
  }
  #archive .conference_list .list .title {
    margin-bottom: .5em;
    font-size: 2rem;
    font-weight: 600;
  }
  #archive .conference_list .list .comment p {
    margin: 0;
  }
  #archive .conference_list .list .comment strong {
    font-weight: 600;
  }  
  #archive .conference_list .list .comment strong {
    font-weight: 600;
  }
  #archive .conference_list .list .comment a {
    color: #f69595;
    text-decoration: underline;
  }
  #archive .conference_list .list .comment a:hover {
    text-decoration: none;
  }  
  #archive .conference_list .list .comment a.btn {
    display: inline-block;
    padding: 0 1em;
    color: #fff;
    font-size: .8em;
    text-decoration: none;
    border-radius: 1em;
    background: #f69595;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }
  #archive .conference_list .list .comment a.btn:hover {
    opacity: .7;
  }  
  #archive .conference_list .list .more_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  #archive .conference_list .list .more_btn a {
    position: relative;
    display: inline-block;
    margin-top: 5rem;
    color: #f69595;
    border-bottom: 1px solid #f69595;
  } 
  #archive .conference_list .list .more_btn a:hover {
    border-bottom: none;
  }      
  #archive .conference_list .list .more_btn a span {
    position: relative;
    display: inline-block;
    padding-right: 2em;    
  }
  #archive .conference_list .list .more_btn a span:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -.5em;
    font-size: 1em;
    line-height: 1;
    content: "\f105";
    font-family: "FontAwesome";
  }
  /******************************************************
  個別記事
  ******************************************************/
  #post #post_data {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid #ccc; 
  }
  #post #post_data .thumbnail {
    width: 240px;
    margin-left: 4rem;
  }
  #post #post_data .thumbnail img {}
  #post #post_data .title {
    margin-bottom: .6em;
    font-size: 2.4rem;
  }
  #post #post_data .time {
    display: block;
    font-weight: 600;
  }
  #post #post_contents h1,
  #post #post_contents h2,
  #post #post_contents h3,
  #post #post_contents h4 {
    margin: .8em 0 1.2em;
    font-weight: 700;
  }
  #post #post_contents h1 {
    font-size: 1.8em;
  }
  #post #post_contents h2 {
    font-size: 1.6em;
  }
  #post #post_contents h3 {
    font-size: 1.4em;
  }
  #post #post_contents h4 {
    font-size: 1.2em;
  }
  #post #post_contents p {
    margin: .8em 0 1.2em;
  }
  #post #post_contents table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  #post #post_contents table th,
  #post #post_contents table td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }  
  #post #post_contents a {
    color: #f69595;
    text-decoration: underline;
  }
  #post #post_contents p a:hover {
    text-decoration: none;
  }
  #post #post_contents a.btn {
    display: inline-block;
    padding: 0 1em;
    color: #fff;
    font-size: .8em;
    text-decoration: none;
    border-radius: 1em;
    background: #f69595;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }
  #post #post_contents a.btn:hover {
    opacity: .7;
  }    
  
}
@media screen and (max-width: 1024px) {
  /******************************************************
  ページ共通
  ******************************************************/
  #page,
  #post,
  #archive {
    padding: 5rem 0;
  }
  /******************************************************
  キャッチコピー
  ******************************************************/
  #page_catch {
    position: relative;
    background-image: linear-gradient(45deg, rgba(253, 176, 176, 1), rgba(246, 149, 149, 1)); 
  }
  #page_catch .catch_cover {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    box-sizing: border-box;
  }
  #page_catch h1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 1;
  }
  #page_catch h1 .jap {
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
  }
  /******************************************************
  タイトル
  ******************************************************/
  #page .btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #page .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 250px;
    height: 50px;
    color: #fff;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;     
    border-radius: 25px;
    background: #f69595;
    border: 1px solid #f69595;
    box-sizing: border-box;      
  }
  #page .page_title_a {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 1.2em;
    font-size: 2rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; 
  }
  #page .page_title_a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: .5em;
    height: .5em;
    margin-top: -.2em;
    line-height: 1;
    background: #f69595;
  }
  #page .page_title_b {
    margin-bottom: 1.2em;
    padding-bottom: .8em;
    font-size: 1.8rem;
    border-bottom: 1px solid #ccc;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;     
  }
  #page .page_title_service {
    margin-bottom: 1.2em!important;
    font-size: 2rem;
    font-weight: 700;
  }
  #page .page_contact_title {
    margin-bottom: 1.2em;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
  }
  /******************************************************
  パーツ
  ******************************************************/
  /* カバー */
  #page .inner *:last-child,
  #page .page_section *:last-child,
  #page .box *:last-child,
  #page .s_box *:last-child {
    margin-bottom: 0;
  }
  #page .page_section {
    margin-bottom: 5rem;
  }
  #page .box {
    margin-bottom: 3rem;
  }
  #page .s_box {
    margin-bottom: 1.5rem;
  }
  #page .bg_box {
    padding: 3rem;
    background: #f6f6f6;
  }
  #page p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #page p a {
    text-decoration: underline;
  }
  #page .bold {
    font-weight: 600;
  }
  /* テーブル */
  #page .page_table_a table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid #ccc;
  }
  #page .page_table_a th,
  #page .page_table_a td {
    display: block;
    width: 100%;
    text-align: left;
  }
  #page .page_table_a th {
    padding: 1.2em 0 .3em;
    font-weight: 700;
  }
  #page .page_table_a td {
    padding: .3em 0 1.2em;
    border-bottom: 1px solid #ccc;
  }
  #page .page_table_b table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    box-sizing: border-box;
  }
  #page .page_table_b th,
  #page .page_table_b td {
    padding: 1em .5em;
    font-size: .9em;
    text-align: left;
    line-height: 1.5;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
  }
  #page .page_table_b th {
    font-weight: 600;
    text-align: center;
    background: #f6f6f6;
  }
  /* Googleマップ */
  #page .map {
    position: relative;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    overflow: hidden;    
  }
  #page .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%; 
  }  
  #page .procedure_list .list {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }
  #page .procedure_list .list .title {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;       
  }  
  #page .procedure_list .list .comment {
    margin-bottom: 2rem;
  }
  #page .greeting_flex {}
  #page .greeting_flex .image {
    margin-bottom: 2rem;
    text-align: center;
  }
  #page .greeting_flex .image img {
    width: 60%;
    height: auto;
  }
  /******************************************************
  お問い合わせ
  ******************************************************/
  #page .contact_req {
    color: #f90;
  }
  #page .contact_tel {}
  #page .contact_tel .tel_comment {
    margin-bottom: 1.2em;
  }
  #page .contact_tel .tel_number a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 8rem;
    color: #333;
    text-align: center;
    line-height: 1.3;
    background: #fff;
    border: 1px solid #333;
  }
  #page .contact_tel .tel_number a .number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
  }
  #page .contact_tel .tel_number a .number:before {
    display: block;
    content: "";
    width: 2rem;
    height: 2rem;
    margin-right: .5rem;
    background: url(/wp-content/uploads/images/icon_phone.webp) center center no-repeat;
    background-size: contain;
  }    
  #page .page_contact_form table .contact_req {
    margin-left: 1em;
  }
  #page .page_contact_form table {
    width: 100%;
    margin-bottom: 3rem;
    table-layout: fixed;
    box-sizing: border-box;
  }
  #page .page_contact_form th,
  #page .page_contact_form td {
    display: block;
    width: 100%;
    text-align: left;
    background: #f6f6f6;
    box-sizing: border-box;
  }
  #page .page_contact_form tr:nth-child(n+2) th {
    border-top: 5px solid #fff;
  }
  #page .page_contact_form th {
    padding: 1.2em 1.2em .3em;
    font-weight: 700;
  }
  #page .page_contact_form td {
    padding: .3em 1.2em 1.2em;
  }
  #page .page_contact_form table input,
  #page .page_contact_form table select,
  #page .page_contact_form table textarea {
    border: none;
  }
  #page .page_contact_form table input[type=text],
  #page .page_contact_form table input[type=email] {
    width: 100%;
    padding: .8em;
  }
  #page .page_contact_form table select {
    padding: .8em;
  }
  #page .page_contact_form table input[type=tel] {
    width: 25%;
    padding: .8em;
  }
  #page .page_contact_form table textarea {
    width: 100%;
    padding: .8em;
  }
  #page .page_contact_form table .mwform-checkbox-field {
    display: block;
    margin: 0!important;
  }  
  #page .page_contact_form .form_btn {
    text-align: center;
  }
  #page .page_contact_form .form_btn input[type=submit] {
    width: 280px;
    height: 6rem;
    color: #fff;
    font-size: 1.4rem;
    background: #f69595;
  }
  /******************************************************
  サイトマップ
  ******************************************************/ 
  #page .sitemap_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #h_nav_list .h_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #fff;
    line-height: 1.5;
  }
  #page .sitemap_list .list_title .eng {
    font-weight: 600;
    font-size: 2rem;  
  }
  #page .sitemap_list .list_title .jap {
    margin-left: 1em;
    font-size: 1.2rem;
    font-weight: 700;
  }
  #page .sitemap_list .list ul {}
  #page .sitemap_list .list li {
    border-bottom: 1px solid #ccc;
  }
  #page .sitemap_list .list li a {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.2em .6em;
    line-height: 1.5;
  }
  #page .sitemap_list .list li a:after {
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    color: #ccc;
    line-height: 1;
    content: "\f105";
    font-family: "FontAwesome";
  }
  #page .sitemap_list .list li a .jap {
    font-weight: 700;
  }  
  /******************************************************
  お知らせ
  ******************************************************/  
  #archive .information_list {
    margin-bottom: 3rem;
  }
  #archive .information_list .list {
    border-bottom: 1px solid #ccc;
  }
  #archive .information_list .list:first-child {
    border-top: 1px solid #ccc;
  }
  #archive .information_list .list a {
    display: block;
    padding: 1em;
  }
  #archive .information_list .list a .time,
  #archive .information_list .list a .title {
    display: block;
    line-height: 1.5;
  }
  #archive .information_list .list a .time {
    margin-bottom: .5em;
    font-weight: 600;
  }
  #archive .information_list .list a .title {
    font-weight: 400;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
  }  
  
  #archive .conference_list {
    margin-bottom: 3rem;
  }
  #archive .conference_list .list {
    display: block;
    padding: 3rem 0;
    border-bottom: 1px solid #ccc;
  }
  #archive .conference_list .list:first-child {
    border-top: 1px solid #ccc;
  }  
  #archive .conference_list .list .image {
    margin-bottom: 3rem;
    text-align: center;
  }
  #archive .conference_list .list .image img {
    width: 75%;
    height: auto;
  }
  #archive .conference_list .list .title {
    margin-bottom: .5em;
    font-size: 1.8rem;
    font-weight: 600;
  }
  #archive .conference_list .list .comment p {
    margin: 0;
  }
  #archive .conference_list .list .comment strong {
    font-weight: 600;
  }
  #archive .conference_list .list .comment a {
    color: #f69595;
    text-decoration: underline;
  }    
  #archive .conference_list .list .comment a.btn {
    display: inline-block;
    padding: 0 1em;
    color: #fff;
    font-size: .8em;
    text-decoration: none;
    border-radius: 1em;
    background: #f69595;     
  }  
  #archive .conference_list .list .more_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  #archive .conference_list .list .more_btn a {
    position: relative;
    display: inline-block;
    margin-top: 3rem;
    color: #f69595;
    border-bottom: 1px solid #f69595;
  }    
  #archive .conference_list .list .more_btn a span {
    position: relative;
    display: inline-block;
    padding-right: 2em;    
  }
  #archive .conference_list .list .more_btn a span:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -.5em;
    font-size: 1em;
    line-height: 1;
    content: "\f105";
    font-family: "FontAwesome";
  }  
  
  /******************************************************
  個別記事
  ******************************************************/
  #post #post_data {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #ccc; 
  }
  #post #post_data .thumbnail img {}  
  #post #post_data .data {
    margin-bottom: 1em;
  }  
  #post #post_data .title {
    margin-bottom: .6em;
    font-size: 2rem;
  }
  #post #post_data .time {
    display: block;
    font-weight: 600;
  }
  #post #post_contents h1,
  #post #post_contents h2,
  #post #post_contents h3,
  #post #post_contents h4 {
    margin: .8em 0 1.2em;
    font-weight: 700;
  }
  #post #post_contents h1 {
    font-size: 1.8em;
  }
  #post #post_contents h2 {
    font-size: 1.6em;
  }
  #post #post_contents h3 {
    font-size: 1.4em;
  }
  #post #post_contents h4 {
    font-size: 1.2em;
  }
  #post #post_contents p {
    margin: .8em 0 1.2em;
  }
  #post #post_contents table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  #post #post_contents table th,
  #post #post_contents table td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }  
  #post #post_contents a {
    color: #f69595;
    text-decoration: underline;
  }
  #post #post_contents a.btn {
    display: inline-block;
    padding: 0 1em;
    color: #fff;
    font-size: .8em;
    text-decoration: none;
    border-radius: 1em;
    background: #f69595;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }   
}
/******************************************************
ヘッダー
******************************************************/
@media screen and (min-width: 1025px) {
  #h_inner {
    position: relative;
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
  }
  #h_logo {
    padding: 3rem 0;
  }
  #h_btn {
    display: flex;
    flex-wrap: wrap;
  }
  #h_btn .btn:nth-child(n+2) {
    margin-left: 1px;
  }
  #h_btn .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 180px;
    height: 40px;
    text-align: center;
    color: #fff;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
  }
  #h_btn .btn a:hover {
    opacity: .7;
  }
  #h_btn .btn a.member {
    border-radius: 0 0 0 6px;
    background: #f2ad69;
  }
  #h_btn .btn a.contact {
    border-radius: 0 0 6px 0;
    background: #f69595;
  }
  #h_nav_cover {
    height: 8rem;
  }
  #h_nav {
    width: 100%;
    background: #f6f6f6;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear; 
  }
  #h_nav.fixed {
    position: fixed;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 0 6px 0 rgba(0,0,0,.1);    
  }  
  #h_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #h_nav ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 8rem;
    padding: 0 3em;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;  
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;   
  }
  #h_nav ul li a:hover {
    color: #f69595;
  }
  #h_toggle_btn,
  #h_nav_modal {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  #header {
    height: 7rem;
  }
  #h_cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    z-index: 100;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;   
  }
  #h_cover.active {
    box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
  }
  #h_logo a {
    display: block;
    padding: 2.3rem 1.5rem;
  }
  #h_logo img {
    display: block;
    width: auto;
    height: 2.4rem;
  }
  #h_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  #h_btn .btn {
    width: 50%;
    box-sizing: border-box;
  }
  #h_btn .btn:nth-child(n+2) {
    border-left: 1px solid #fff;;
  }
  #h_btn .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 6rem;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
    color: #fff;    
  }
  #h_btn .btn a.member {
    background: #f2ad69;
  }
  #h_btn .btn a.contact {
    background: #f69595;
  }
  /* メニュー全体 */
  #h_nav {
    background: rgba(255,255,255,1);
    display: block;
    width: 480px;
    max-width: calc(100% - 7rem);
    height: 100%;
    padding: 6rem 1.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }
  #h_nav.on {
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  #h_nav li a {
    position: relative;
    display: block;
    padding: 1em;
    padding-left: 1.5em;
    border-bottom: 1px solid #f6f6f6;
  }
  #h_toggle_btn {
    position: fixed;
    display: block;
    width: 70px;
    height: 70px;
    top: 0;
    right: 0;
    z-index: 101;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_toggle_btn span {
    display: block;
    width: 30px;
    height: 1px;
    background: #333;
    position: absolute;
    left: 20px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;	
  }
  #h_toggle_btn span:nth-child(1){
    top: 28px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 35px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 42px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 35px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 35px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  }    
  #h_nav_modal {
    background: rgba(0,0,0,.2);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .1;
    position: fixed;
    top: 0;
    z-index: 100;
    visibility: hidden;
    webkit-transition: visibility 0 linear .4s, opacity .4s;
    -moz-transition: visibility 0 linear .4s, opacity .4s;
    transition: visibility 0 linear .4s, opacity .4s;
    webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  #h_nav_modal.on {
    opacity: 1;
    webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
    visibility: visible;
  }  
}
/******************************************************
フッター
******************************************************/
@media screen and (min-width: 1025px) {
  #footer {
    border-top: 1px solid #ccc;
  }
  #f_inner {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    box-sizing: border-box;
  }
  #f_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0;
  }
  #f_logo {
    margin-bottom: 4rem;
  }
  #f_address a {
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
  }
  #f_address a:hover {
    color: #f69595;
  }  
  #f_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  #f_nav ul:nth-child(n+2) {
    margin-top: .8em;
  }
  #f_nav ul li:nth-child(n+2):before {
    content: "/";
    margin: 0 1em;
  }
  #f_nav ul li a {
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
  }
  #f_nav ul li a:hover {
    color: #f69595;
  }  
  #copyright {
    color: #fff;
    text-align: center;
    line-height: 8rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
    background: #f69595;
  }
}
@media screen and (max-width: 1024px) {
  #footer {
    padding-bottom: 6.1rem;
    border-top: 1px solid #ccc;
  }
  #f_inner {
    padding: 0 1.5rem;
    position: relative;
    box-sizing: border-box;
  }
  #f_flex {
    display: flex;
    flex-direction: column;
    padding: 5rem 0;
  }
  #f_data {
    order: 100;
  }
  #f_logo {
    margin-bottom: 2rem;
    text-align: center;
  }
  #f_logo img {
    max-width: 80%;
  }
  #f_address {
    text-align: center;
  }
  #f_nav {
    margin-bottom: 5rem;
    border-top: 1px solid #ccc;
  }
  #f_nav ul {}
  #f_nav ul li {
    border-bottom: 1px solid #ccc;
  }
  #f_nav ul li a {
    position: relative;
    padding: .8em;
    padding-right: 2em;
    display: block;
  }
  #f_nav ul li a:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -.5em;
    color: #999;
    line-height: 1;
    content: "\f105";
    font-family: "FontAwesome";  
  }
  #copyright {
    color: #fff;
    text-align: center;
    line-height: 6rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
    border-top: 1px solid #fff;
    background: #f69595;
    box-sizing: border-box;
  }
}
/******************************************************
トップ
******************************************************/
@media screen and (min-width: 1025px) {
  /******************************************************
  共通
  ******************************************************/
  .main_title {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;     
  }
  .main_title .jap {
    font-size: 2.8rem;
  }
  .main_title .eng {
    position: relative;
    margin-left: 1em;
    padding: 0 1em;
    font-size: 1.4rem;
  }
  .main_title .eng:before,
  .main_title .eng:after {
    position: absolute;
    top: 50%;
    display: block;
    content: "";
    width: .5em;
    height: 1px;
    background: #333;
  }
  .main_title .eng:before {
    left: 0;
  }
  .main_title .eng:after {
    right: 0;
  }
  .top_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    height: 60px;
    color: #fff;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;     
    border-radius: 30px;
    background: #f69595;
    border: 1px solid #f69595;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }
  .top_btn a:hover {
    color: #f69595;
    background: #fff;
  }
  /******************************************************
  メインビジュアル
  ******************************************************/  
  #top_main {
    margin-top: 2rem;
    margin-bottom: 8rem;
  }
  #main_visual_list {
    opacity: 0;
    transition: opacity .6s linear;  
  }
  #main_visual_list.slick-initialized {
    opacity: 1;  
  }  
  #main_visual_list .list {
    position: relative;
    margin: 0 1rem;
  }
  #main_visual_list .list .image {
    width: 100%;
  }
  #main_visual_list .list .image img {
    object-fit: cover;
    aspect-ratio: 2 / 1;
  }
  #main_visual_list .list .copy {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1em;
    color: #fff;
    font-size: 4.2rem;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
    text-shadow: 0 0 12px rgba(0,0,0,.6);
    z-index: 1;
    box-sizing: border-box;
  }
  /******************************************************
  学術集会のご案内
  ******************************************************/
  #top_conference {
    margin-bottom: 8rem;
  }
  #top_conference .conference_list {
    margin-bottom: 5rem;
  }
  #top_conference .conference_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_conference .conference_list .list .image {
    width: 300px;
  }
  #top_conference .conference_list .list .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 340px);
    padding: 1em;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
  }
  #top_conference .conference_list .list .title {
    margin-bottom: .5em;
    font-size: 2rem;
    font-weight: 600;
  }
  #top_conference .conference_list .list .comment strong {
    font-weight: 600;
  }
  #top_conference .conference_list .list .comment a {
    color: #f69595;
    text-decoration: underline;
  }
  #top_conference .conference_list .list .comment a:hover {
    text-decoration: none;
  }  
  #top_conference .conference_list .list .comment a.btn {
    display: inline-block;
    padding: 0 1em;
    color: #fff;
    font-size: .8em;
    text-decoration: none;
    border-radius: 1em;
    background: #f69595;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }
  #top_conference .conference_list .list .comment a.btn:hover {
    opacity: .7;
  }  
  
  #top_conference .conference_list .list .more_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  #top_conference .conference_list .list .more_btn a {
    position: relative;
    display: inline-block;
    margin-top: 5rem;
    color: #f69595;
    border-bottom: 1px solid #f69595;
  }
  #top_conference .conference_list .list .more_btn a:hover {
    border-bottom: none;
  }      
  #top_conference .conference_list .list .more_btn a span {
    position: relative;
    display: inline-block;
    padding-right: 2em;    
  }
  #top_conference .conference_list .list .more_btn a span:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -.5em;
    font-size: 1em;
    line-height: 1;
    content: "\f105";
    font-family: "FontAwesome";
  }
  
  /******************************************************
  新着情報
  ******************************************************/
  #top_information {
    margin-bottom: 8rem;
  }
  #top_information .information_list {
    margin-bottom: 5rem;
  }
  #top_information .information_list .list {
    border-bottom: 1px solid #ccc;
  }
  #top_information .information_list .list:first-child {
    border-top: 1px solid #ccc;
  }
  #top_information .information_list .list a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.5em 1em;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }
  #top_information .information_list .list a:hover {
    color: #f69595;
  }  
  #top_information .information_list .list a .time,
  #top_information .information_list .list a .title {
    line-height: 1.5;
  }
  #top_information .information_list .list a .time {
    width: 8em;
  }
  #top_information .information_list .list a .title {
    width: calc(100% - 8em);
    font-weight: 400;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
  }
  /******************************************************
  研究会について
  ******************************************************/
  #top_about {
    margin-bottom: 8rem;
  }
  #top_about .about_list {
    display: flex;
    flex-wrap: wrap;
  }
  #top_about .about_list .list {
    width: calc((100% / 3) - 20px);
    margin-left: 30px;
  }
  #top_about .about_list .list:nth-child(3n+1) {
    margin-left: 0;
  }
  #top_about .about_list .list:nth-child(n+4) {
    margin-top: 30px;
  }
  #top_about .about_list .list a {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #top_about .about_list .list a:hover {
    box-shadow: none;
    background: #f6f6f6;
  }
  #top_about .about_list .list a .title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    font-size: 2.4rem;
    line-height: 1;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
    border-bottom: 1px solid #ccc;
  }
  #top_about .about_list .list a .title:before {
    display: block;
    content: "";
    width: 5rem;
    height: 5rem;
    margin-right: 1em;
  }
  #top_about .about_list .list:nth-child(1) a .title:before {
    background: url(/wp-content/uploads/images/icon_about001.webp) center center no-repeat;
    background-size: contain;
  }
  #top_about .about_list .list:nth-child(2) a .title:before {
    background: url(/wp-content/uploads/images/icon_about002.webp) center center no-repeat;
    background-size: contain;
  }
  #top_about .about_list .list:nth-child(3) a .title:before {
    background: url(/wp-content/uploads/images/icon_about003.webp) center center no-repeat;
    background-size: contain;
  }  
  #top_about .about_list .list a .comment {
    position: relative;
    padding-right: 2em;
  }
  #top_about .about_list .list a .comment:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -.5em;
    color: #999;
    font-size: 1.5em;
    line-height: 1;
    content: "\f105";
    font-family: "FontAwesome";
  }
  /******************************************************
  会員情報
  ******************************************************/
  #top_member {
    margin-bottom: 8rem;
  }
  #top_member .member_list {
    display: flex;
    flex-wrap: wrap;
  }
  #top_member .member_list .list {
    width: calc((100% / 3) - 20px);
    margin-left: 30px;
  }
  #top_member .member_list .list:nth-child(3n+1) {
    margin-left: 0;
  }
  #top_member .member_list .list:nth-child(n+4) {
    margin-top: 30px;
  }
  #top_member .member_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
    background-image: linear-gradient(45deg, rgba(227, 102, 102, 1), rgba(246, 149, 149, 1));    
    object-fit: cover;
    aspect-ratio: 10 / 4.8;
    border-radius: 8px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
  }
  #top_member .member_list .list a:hover {
    opacity: .7;
  }
  /******************************************************
  お問い合わせ
  ******************************************************/
  #top_contact {
    margin-bottom: 8rem;
  }
  #top_contact .contact_box {
    padding: 5rem;
    text-align: center;
    border-radius: 1.6rem;
    border: 1px solid #999;
  }
  #top_contact .contact_box .name {
    margin-bottom: .8em;
    font-size: 2.4rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
  }
  #top_contact .contact_box .address {
    margin-bottom: 1.2em;
  }
  #top_contact .contact_box .contact_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 2.4rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
  }
  #top_contact .contact_box .contact_list .list:nth-child(n+2):before {
    content: "/";
    margin: 0 1em;
  }
  #top_contact .contact_box .contact_list .list a {
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;  
  }
  #top_contact .contact_box .contact_list .list a:hover {
    color: #f69595;
  }
}
@media screen and (max-width: 1024px) {  
  /******************************************************
  共通
  ******************************************************/
  .main_title {
    margin-bottom: 2rem;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;     
  }
  .main_title .jap {
    display: block;
    font-size: 2rem;
    margin-bottom: .3em;
  }
  .main_title .eng {
    position: relative;
    display: inline-block;
    padding: 0 1em;
    font-size: 1.4rem;
  }
  .main_title .eng:before,
  .main_title .eng:after {
    position: absolute;
    top: 50%;
    display: block;
    content: "";
    width: .5em;
    height: 1px;
    background: #333;
  }
  .main_title .eng:before {
    left: 0;
  }
  .main_title .eng:after {
    right: 0;
  }
  .top_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 250px;
    height: 50px;
    color: #fff;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;     
    border-radius: 30px;
    background: #f69595;
    border: 1px solid #f69595;
    box-sizing: border-box;      
  }
  /******************************************************
  メインビジュアル
  ******************************************************/  
  #top_main {
    margin-bottom: 5rem;
  }
  #main_visual_list {
    opacity: 0;
    transition: opacity .6s linear;  
  }
  #main_visual_list.slick-initialized {
    opacity: 1;  
  }  
  #main_visual_list .list {
    position: relative;
  }
  #main_visual_list .list .image {
    width: 100%;
  }
  #main_visual_list .list .image img {
    object-fit: cover;
    aspect-ratio: 2 / 2;
  }
  #main_visual_list .list .copy {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1em;
    color: #fff;
    font-size: 5.4vw;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
    text-shadow: 0 0 12px rgba(0,0,0,.6);
    z-index: 1;
    box-sizing: border-box;
  }
  /******************************************************
  学術集会のご案内
  ******************************************************/
  #top_conference {
    margin-bottom: 5rem;
  }
  #top_conference .conference_list {
    margin-bottom: 3rem;
  }
  #top_conference .conference_list .list {
    display: block;
  }
  #top_conference .conference_list .list .image {
    margin-bottom: 3rem;
    text-align: center;
  }
  #top_conference .conference_list .list .image img {
    width: 75%;
    height: auto;
  }
  #top_conference .conference_list .list .title {
    margin-bottom: .5em;
    font-size: 1.8rem;
    font-weight: 600;
  }
  #top_conference .conference_list .list .comment strong {
    font-weight: 600;
  }
  #top_conference .conference_list .list .comment a {
    color: #f69595;
    text-decoration: underline;
  }
  #top_conference .conference_list .list .comment a.btn {
    display: inline-block;
    padding: 0 1em;
    color: #fff;
    font-size: .8em;
    text-decoration: none;
    border-radius: 1em;
    background: #f69595;      
  }
  #top_conference .conference_list .list .more_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  #top_conference .conference_list .list .more_btn a {
    position: relative;
    display: inline-block;
    margin-top: 3rem;
    color: #f69595;
    border-bottom: 1px solid #f69595;
  }
  #top_conference .conference_list .list .more_btn a:hover {
    border-bottom: none;
  }      
  #top_conference .conference_list .list .more_btn a span {
    position: relative;
    display: inline-block;
    padding-right: 2em;    
  }
  #top_conference .conference_list .list .more_btn a span:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -.5em;
    font-size: 1em;
    line-height: 1;
    content: "\f105";
    font-family: "FontAwesome";
  }
  
  /******************************************************
  新着情報
  ******************************************************/
  #top_information {
    margin-bottom: 5rem;
  }
  #top_information .information_list {
    margin-bottom: 3rem;
  }
  #top_information .information_list .list {
    border-bottom: 1px solid #ccc;
  }
  #top_information .information_list .list:first-child {
    border-top: 1px solid #ccc;
  }
  #top_information .information_list .list a {
    display: block;
    padding: 1em;
  }
  #top_information .information_list .list a .time,
  #top_information .information_list .list a .title {
    display: block;
    line-height: 1.5;
  }
  #top_information .information_list .list a .time {
    margin-bottom: .5em;
    font-weight: 600;
  }
  #top_information .information_list .list a .title {
    font-weight: 400;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
  }
  /******************************************************
  研究会について
  ******************************************************/
  #top_about {
    margin-bottom: 5rem;
  }
  #top_about .about_list {}
  #top_about .about_list .list {}
  #top_about .about_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_about .about_list .list a {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 6px 0 rgba(0,0,0,.1); 
  }
  #top_about .about_list .list a .title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    font-size: 2rem;
    line-height: 1;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
    border-bottom: 1px solid #ccc;
  }
  #top_about .about_list .list a .title:before {
    display: block;
    content: "";
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 1em;
  }
  #top_about .about_list .list:nth-child(1) a .title:before {
    background: url(/wp-content/uploads/images/icon_about001.webp) center center no-repeat;
    background-size: contain;
  }
  #top_about .about_list .list:nth-child(2) a .title:before {
    background: url(/wp-content/uploads/images/icon_about002.webp) center center no-repeat;
    background-size: contain;
  }
  #top_about .about_list .list:nth-child(3) a .title:before {
    background: url(/wp-content/uploads/images/icon_about003.webp) center center no-repeat;
    background-size: contain;
  }  
  #top_about .about_list .list a .comment {
    position: relative;
    padding-right: 2em;
  }
  #top_about .about_list .list a .comment:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -.5em;
    color: #999;
    font-size: 1.5em;
    line-height: 1;
    content: "\f105";
    font-family: "FontAwesome";
  }
  /******************************************************
  会員情報
  ******************************************************/
  #top_member {
    margin-bottom: 5rem;
  }
  #top_member .member_list {}
  #top_member .member_list .list {}
  #top_member .member_list .list:nth-child(n+2) {
    margin-top: 1rem;
  }
  #top_member .member_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;      
    background-image: linear-gradient(45deg, rgba(227, 102, 102, 1), rgba(246, 149, 149, 1));    
    object-fit: cover;
    aspect-ratio: 10 / 2;
    border-radius: 8px;   
  }
  /******************************************************
  お問い合わせ
  ******************************************************/
  #top_contact {
    margin-bottom: 5rem;
  }
  #top_contact .contact_box {
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: .8rem;
    border: 1px solid #999;
  }
  #top_contact .contact_box .name {
    margin-bottom: .8em;
    font-size: 1.6rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
    line-height: 1.5;
  }
  #top_contact .contact_box .type {
    margin-bottom: 1.2em;
    line-height: 1.5;
  }
  #top_contact .contact_box .address {
    margin-bottom: 1.2em;
  }
  #top_contact .contact_box .contact_list {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;    
  }
}