@charset "utf-8";
/* CSS Document */
:root {
 font-size: 10px;
}
html {
 scroll-behavior: smooth;
 scroll-padding-top: 170px;
}
body {
 font-size: 20px; font-size: 2.0rem;
 line-height: 150%;
 /*font-family: "ten-mincho-antique", sans-serif;*/
 font-family: zen-kaku-gothic-antique, sans-serif;
 /*font-family: "biz-udpgothic", sans-serif;*/
 font-weight: 500;
 font-style: normal;
 color: #3d3d3d;
 word-break: break-all;
 background-color: #ffffff;
}

h1 {
 font-size: 30px; font-size: 3.0rem;
 line-height: 150%;
 font-weight: bold;
 letter-spacing: 0.05em;
}
h2 {
 font-size: 26px; font-size: 2.6rem;
 line-height: 150%;
}
h3{
 font-size: 22px; font-size: 2.2rem;
 line-height: 150%;
}
a {
 transition: all 0.1s;
 text-decoration-skip-ink: none;
}
a:hover {
 color: #a80000;
 transition: all 0.1s;
}
img {
 width: 100%;
}

.wrapper {
 background-color: #eef2f5;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 body {
  font-size: 18px;
 }
 .wrapper {
  margin-top: 50px;
 }
}

/*sectionの幅、間隔*/
section {
 width: 100%;
 max-width: 1400px;
 margin: 0 auto;
}

/*ページ内リンクのヘッダー高さ調整*/
 @media screen and (max-width: 640px) {
  html {
   scroll-padding-top: 50px;
  }
 }
 /*ページ内リンクのヘッダー高さ調整*/

/*TOPへ戻る*/
.backtotop {
 position: fixed;
 right: 20px;
 bottom: 20px;
 z-index: 88;
 display: none;
}
.backtotop a {
 display: block;
 content: url("../img/back_top.png");
 padding: 10px; 
 margin: 0;
 background-color: #775ca2;
 border-radius: 50%;
 text-decoration: none;
 font-weight: bold;
 box-shadow: 0 5px 0 #7e9aae;
 transition: all 0.2s;
}
.backtotop a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 600px) {
 .backtotop {
  bottom: 60px;
  opacity: 0.7;
 }
}

/*ハンバーガーメニュー*/
#menu-button {
 display: none;
 position: fixed;
 z-index: 88;
 top: 0;
 width: 100%;
 height: 50px;
 background-color: #775ca2;
 box-sizing: border-box;
 box-shadow: 0px 2px 2px rgba(0,0,0,0.30);
}
.hun_txt_area {
 display: flex;
 flex-direction: row;
 padding: 5px 0 0 5px;
 box-sizing: border-box;
}
.hun_txt_area img {
 width: 40px;
 box-sizing: border-box;
 transition: all 0.2s;
}
.hun_txt_area img:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.icon {
 cursor: pointer;
 position: relative;
}
.icon span {
  position: absolute;
  right: 15px;
  width: 30px; /* 線の幅 */
  height: 3px; /* 線の太さ */
  background-color: #ffffff; /* 線の色 */
  transition: ease 0.3s;
}
.icon span:nth-of-type(1) {
  top: 15px; /* 上の線の位置調整 */
}
.icon span:nth-of-type(2) {
  top: 25px; /* 真ん中の線の位置調整 */
}
.icon span:nth-of-type(3) {
  top: 35px; /* 下の線の位置調整 */
}
.open span:nth-of-type(1) {
  top: 25px;
  transform: rotate(-45deg); /* 線の角度調整 */
}
.open span:nth-of-type(2) {
  opacity: 0; /* 透明化 */
}
.open span:nth-of-type(3) {
  top: 25px;
  transform: rotate(45deg);  /* 線の角度調整 */
}
.hun_tit {
 height: 100%;
 padding-left: 10px;
 font-style: normal;
 font-size: 16px;
 line-height: 18px;
 font-weight: bold;
 box-sizing: border-box;
}
.s_sp {
 display: none;
}
.sample-menu {
 display: none;
 width: 100%;
 position: fixed;
 z-index: 88;
 top: 50px;
 left: 0;
 background-color: #775ca2;
 color: #ffffff;
}
.sample-menu li {
 border-top: 1px solid #ffffff;
 box-sizing: border-box;
 font-size: 16px;
 line-height: 18px;
}
.sample-menu li:last-child {
 border-bottom: 1px solid #ffffff;
}
.sample-menu li a {
 display: inline-block;
 width: 100%;
 padding: 10px;
 color: #ffffff;
 font-weight: bold;
 text-decoration: none;
 box-sizing: border-box;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 #menu-button {
  display: block;
 }
 .top_hum {
  margin-top: 50px;
 }
}

/*ヘッダー*/
#hedder {
 position: sticky;
 top: 0;
 z-index: 88;
}
.hed_tit {
 position: relative;
 width: 100%;
 height: 100px;
 background-color: #ffffff;
 box-sizing: border-box;
}
.hed_tit p {
 position: absolute;
 left: 20px;
 top: 50%;
 transform: translateY(-50%);
 font-size: 30px;
 font-weight: bold;
 color: #3d3d3d;
}
.hed_tit p a {
 color: #3d3d3d;
 text-decoration: none;
 transition: all 0.2s;
}
.hed_tit p a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.hed_tit p .small {
 display: block;
 margin-top: 10px;
 font-size: 16px;
 line-height: 120%;
}
.hed_logo {
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
 width: 100%;
 max-width: 150px;
}
.hed_nav {
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 background-color: #775ca2;
 padding: 10px 0;
 border-bottom: 2px solid #ffffff;
 box-sizing: border-box;
}
.hed_nav li {
 width: calc(100%/6);
 text-align: center;
 line-height: 120%;
 font-weight: bold;
 border-right: 1px solid #ffffff;
 box-sizing: border-box;
}
.hed_nav li:last-child {
 border-right: none;
}
.hed_nav li a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 50px;
 padding: 0 3px;
 color: #ffffff;
 text-decoration: none;
 box-sizing: border-box;
 transition: all 0.2s;
}
.hed_nav li a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
/* デバイス幅が1200px以下 */
@media only screen and (max-width:1200px) {
 .hed_tit p {
  font-size: 25px;
  line-height: 150%;
 }
 .hed_nav li {
  font-size: 0.8em;
  line-height: 150%;
 }
}
/* デバイス幅が750px以下 */
@media only screen and (max-width:750px) {
 .hed_tit p {
  font-size: 22px;
  line-height: 150%;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 #hedder {
  display: none;
 }
}

/*メインビジュアル*/
.kyoto_main_vis {
 width: 100%;
}
.kyoto_main_vis img {
 vertical-align: middle;
}

/*ニュース*/
.kyoto_news {
 width: 100%;
 max-width: 950px;
 margin: 0 auto;
 display: flex;
 flex-direction: row;
 justify-content: center;
 box-sizing: border-box;
}
.news_tit {
 width: 100%;
 max-width: 20%;
 font-size: 50px;
 line-height: 40px;
 color: #3d3d3d;
 text-align: center;
}
.news_tit span {
 display: block;
 font-size: 20px;
}
.news_area {
 width: 100%;
 max-width: 80%;
 height: 210px;
 overflow-y: auto;
 padding: 20px;
 background-color: #ffffff;
 border-radius: 20px;
 box-sizing: border-box;
}
.news_area dl {
 display: flex;
 padding: 10px 0;
 border-bottom: 1px dotted #775ca2;
 box-sizing: border-box;
}
.news_area dl:last-child {
 border: none;
}
.news_area dl dt {
 width: 150px;
}
.news_new::after {
 content: "NEW";
 margin-left: 5px;
 padding: 0 2px;
 font-size: 14px;
 line-height: 14px;
 color: #ffffff;
 background-color: #cc0000;
 box-sizing: border-box;
}
.news_area dl dd {
 width: calc(100% - 150px);
} 
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .kyoto_news {
  flex-direction: column;
 }
 .news_tit,
 .news_area {
  max-width: 100%;
 }
 .news_tit {
  font-size: 40px;
 }
 .news_area {
  margin-top: 20px;
 }
 .news_area dl {
  flex-direction: column;
 }
 .news_area dl dt,
 .news_area dl dd {
  width: 100%;
 }
}

/*各項目*/
.main_top {
 padding: 30px 20px;
 background-color: #fff9b0;
 box-sizing: border-box;
}
.main_top2 {
 padding: 30px 20px;
 background-color: #775ca2;
 box-sizing: border-box;
}
.lead_txt {
 width: 100%;
 max-width: 950px;
 margin: 0 auto;
 color: #3d3d3d;
}
.lead_txt2 {
 width: 100%;
 max-width: 950px;
 margin: 0 auto;
 color: #ffffff;
}
.lead_txt2 .main_tit {
 color: #ffffff;
}
.lead_txt2 h1 {
 font-size: 40px;
 line-height: 150%;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .lead_txt2 h1 {
  font-size: 25px;
  line-height: 150%;
 }
}
.main {
 padding: 70px 20px;
 background-color: #ffffff;
 box-sizing: border-box;
}
.style_purple {
 background-color: #d6cde3;
}
.main_tit {
 width: 100%;
 max-width: 950px;
 text-align: center;
 font-size: 30px;
 font-weight: bold;
 color: #3d3d3d;
 margin: 0 auto;
}
.main_sub {
 display: block;
 width: 100px;
 height: 5px;
 margin: 10px auto 20px;
 background-color: #f4d900;
}
.column_tit {
 width: 100%;
 max-width: 950px;
 margin: 0 auto;
 margin-top: 30px;
 padding: 10px;
 font-size: 25px;
 font-weight: bold;
 text-align: center;
 border-top-left-radius: 20px;
 border-top-right-radius: 20px;
 background-color: #fff9b0;
 box-sizing: border-box;
}
.txt_area {
 width: 100%;
 max-width: 950px;
 margin: 0 auto;
 padding: 20px;
 background-color: #ffffff;
 border: 3px solid #fff9b0;
 border-top: none;
 border-bottom-left-radius: 20px;
 border-bottom-right-radius: 20px;
 box-sizing: border-box;
}
.txt_area p {
}
.paper_bt {
 cursor:pointer;
 width: 100%;
 max-width: 950px;
 margin: 50px auto 0;
 padding: 10px;
 align-items: center;
 text-align: center;
 font-weight: bold;
 color: #ffffff;
 background-color: #007085;
 border-radius: 20px;
 box-sizing: border-box;
 transition: all 0.2s;
}
.paper_bt:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
/*プラスからマイナスに変化*/
.plus {
 position: relative;
}
.plus::before,.plus::after {
 content: '';
 display: inline-block;
 width: 20px;
 height: 3px;
 background-color: #ffffff;
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
 transition: opacity 0.2s;
}
.plus::after {
 transform: translateY(-50%) rotate(90deg);
 transition: transform 0.2s;
}
.plus.show::before {
 opacity: 0;
}
.plus.show::after {
 transform: translateY(-50%) rotate(180deg);
}

/*テーブル*/
.style_table {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 border-collapse: collapse;
}
.style_table th,
.style_table td {
 padding: 5px;
 border: 1px solid #007085;
 box-sizing: border-box;
}
.style_table th {
 text-align: center;
 font-weight: bold;
 background-color: #c5e7e4;
}
.style_table td {
 background-color: #ffffff;
}
.style_table td a {
 transition: all 0.2s;
}
.style_table td a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.table_img img {
 max-width: 20px;
}

/*ボタン*/
.kyoto_bt {
 width: 100%;
 max-width: 500px;
 margin: 0 auto 30px;
 font-weight: bold;
 text-align: center;
 transition: all 0.2s;
}
.kyoto_bt:last-child {
 margin-bottom: 0;
}
.kyoto_bt a {
 display:flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 70px;
 color: #ffffff;
 text-decoration: none;
 background-color: #007085;
 background-image: url("../img/button.png");
 background-repeat: no-repeat;
 background-position: 95% center;
 border-radius: 35px;
 box-sizing: border-box;
 box-shadow: 0 5px 0 #7e9aae;
 transition: all 0.2s;
}
.kyoto_bt a::after {
 height: 30px;
 margin-left: 5px;
}
.kyoto_bt a.bt_pdf::after {
 content: url("../img/icon_pdf.png");
}
.kyoto_bt a.bt_doc::after {
 content: url("../img/icon_doc.png");
}
.kyoto_bt a.bt_xl::after {
 content: url("../img/icon_xl.png");
}
.kyoto_bt a.bt_ppt::after {
 content: url("../img/icon_ppt.png");
}
.kyoto_bt a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
.kyoto_bt_null {
 display:flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 500px;
 height: 70px;
 margin: 0 auto 30px;
 color: #999999;
 font-weight: bold;
 text-align: center;
 border: 2px solid #999999;
 border-radius: 35px;
 background-color: #cccccc;
 box-sizing: border-box;
}
.kyoto_img {
 margin: 0 auto;
 text-align: center;
}
.kyoto_img figcaption {
 font-size: 0.8em;
 line-height: 150%;
}
.style_double_img {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
}
.style_double_img img {
 max-width: 400px;
 margin: 20px;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .main_tit {
  font-size: 25px;
  line-height: 150%;
 }
 .column_tit {
  font-size: 22px;
  padding: 10px;
 }
}

.faq {
 width: 100%;
 max-width: 950px;
 margin: 0 auto;
}
.faq dl {
}
.faq dl dt,
.faq dl dd {
 position: relative;
 border-radius: 20px;
 box-sizing: border-box;
}
.faq dl dt span,
.faq dl dd span {
 position: absolute;
 top: 20px;
 left: 20px;
 font-size: 30px;
 font-weight: bold;
}
.faq dl dd span {
 color: #775ca2;
}
.faq dl dt {
 cursor:pointer;
 width: 100%;
 margin-top: 20px;
 padding: 20px 50px 20px 100px;
 color: #ffffff;
 background-color: #775ca2;
}
.faq dl dd {
 width: 100%;
 margin-top: 10px;
 padding: 20px 20px 20px 100px;
 align-items: center;
 color: #3d3d3d;
 background-color: #ffffff;
 border: 3px solid #775ca2;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .faq dl dt,
 .faq dl dd {
  padding-left: 80px;
 }
 .faq dl dt span,
 .faq dl dd span {
  font-size: 25px;
 }
}

/*フッター*/
#footer {
 color: #ffffff;
 background-color: #775ca2;
}
.kyoto_foot_area {
 width: 100%;
 padding: 20px 10px;
 text-align: center;
 box-sizing: border-box;
}
.kyoto_tel {
 font-size: 40px;
 margin: 20px 0 10px;
}
.kyoto_tel::before {
 content: url("../img/tel.png");
 vertical-align: middle;
 margin: 10px;
}
.kyoto_copy {
 width: 100%;
 text-align: center;
 color: #3d3d3d;
 padding: 10px;
 word-break: keep-all;
 background-color: #fff9b0;
 box-sizing: border-box;
}
.kyoto_copy p {
 font-size: 16px;
 font-weight: bold;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .kyoto_foot_area h1 {
  font-size: 25px;
  line-height: 150%;
 }
 .kyoto_tel {
  font-size: 37px;
  line-height: 150%;
 }
}

/*アコーディオン用*/
.submenu {
 display: none;
}

/*文字装飾*/
.bold {
 font-weight: bold;
}
.nomal {
 font-weight: normal;
}
.red {
 color: #ff0000;
}
.blue {
 color: #0000cc;
}
.yellow {
 color: #fcc601;
}
.purple {
 color: #775ca2;
}
.green {
 color: #007085;
}
.black {
 color: #3d3d3d;
}
.mark {
 background-color: #ffff00;
}
.line {
 text-decoration: underline;
 text-decoration-skip-ink: none;
}
.small {
 font-size: 0.8em;
}
.large {
 font-size: 1.2em;
}
.large_2 {
 font-size: 1.5em;
}
.cen {
 text-align: center;
}

/*二行目以降字下げ*/
.kai {
 display: block;
 text-indent: -1em;
 padding-left: 1em;
}
.kai_1-3 {
 display: block;
 text-indent: -1.3em;
 padding-left: 1.3em;
}
.kai_1-5 {
 display: block;
 text-indent: -1.5em;
 padding-left: 1.5em;
}
.kai_2 {
 display: block;
 text-indent: -2em;
 padding-left: 2em;
}
.kai_2-5 {
 display: block;
 text-indent: -2.5em;
 padding-left: 2.5em;
}
.kai_3 {
 display: block;
 text-indent: -3em;
 padding-left: 3em;
}
.kai_4 {
 display: block;
 text-indent: -4em;
 padding-left: 4em;
}
.kai_5 {
 display: block;
 text-indent: -5em;
 padding-left: 5em;
}
.kai_6 {
 display: block;
 text-indent: -6em;
 padding-left: 6em;
}
.kai_7 {
 display: block;
 text-indent: -7em;
 padding-left: 7em;
}
.kai_8 {
 display: block;
 text-indent: -8em;
 padding-left: 8em;
}
.kai_9 {
 display: block;
 text-indent: -9em;
 padding-left: 9em;
}
.kai_10 {
 display: block;
 text-indent: -10em;
 padding-left: 10em;
}
.kai_11 {
 display: block;
 text-indent: -11em;
 padding-left: 11em;
}
.kai_12 {
 display: block;
 text-indent: -12em;
 padding-left: 12em;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .kai_5, .kai_6, .kai_7, .kai_8, .kai_9, .kai_10, .kai_11, .kai_12 {
  text-indent: -1em;
  padding-left: 1em;
 }
}

/*サイズ毎の表示変更*/
.pc {
 display: block;
}
.tb {
 display: none;
}
.sp {
 display: none;
}
/* デバイス幅が1200px以下 */
@media only screen and (max-width:1200px) {
 .pc {
  display: none;
 }
 .tb {
  display: block;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .tb {
  display: none;
 }
 .sp {
  display: block;
 }
}

/*フロート解除*/
.clear {
 clear: both;
}

.none {
 display: none;
}

/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
  display: none;
}
.gallery {
 transition: all 0.2s;
}
.gallery:hover {
 opacity: 0.8;
 transition: all 0.2s;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
  background:#ccc;  
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title{
  font-size:1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
  padding:0;
}