@charset "utf-8";



/******************************/
/********** Web Font **********/
/******************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');



/**************************************************/
/********** Responsive Base Font Setting **********/
/**************************************************/

@media print, screen and ( min-width: 769px ) {
  html {
    font-size: 62.5%;
  }
}
@media screen and ( max-width: 768px ) {
  html {
    font-size: 56.3%;
  }
}
@media screen and ( max-width: 480px ) {
  html {
    font-size: 50.0%;
  }
}



/*****************************/
/********** Default **********/
/*****************************/

* {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
*:focus {
  outline: 0;
}
::selection { background: #BBBBBB; color: #FFFFFF; text-shadow: none;}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.04rem;
  color: #000000;
  background-color: #FFFFFF;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "pkna" 1;
}
p {
  margin: 30px 0;
  text-align: justify;
  text-justify: inter-character;
}
a {
  color: #3C3CAA;
  background: none;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and ( max-width: 768px ) {
  a {
    text-underline-offset: 4px;
  }
}
a:hover {
  color: #BBBBBB;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
a img {
  border: none;
  backface-visibility: hidden;
}
a:hover img {
  opacity: 0.7;
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and ( max-width: 1024px ) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
address {
  font-style: normal;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
strong {
  font-weight: 700;
}
em {
  font-weight: 700;
  font-style: italic;
}
b {
  font-weight: 700;
  color: #3C3CAA;
}
i {
  font-style: italic;
}
sup {
  vertical-align: super;
  position: relative;
  top: -0.1rem;
  font-size: smaller;
}
sub {
  vertical-align: sub;
  position: relative;
  bottom: 0.1rem;
  font-size: smaller;
}
hr {
  border: none;
  height: 1px;
  background-color: #3C3CAA;
  margin: 30px 0;
  clear: both;
}
pre {
  clear: both;
  white-space: pre-wrap;
  background-color: #EFEFEF;
  font-size: 1.4rem;
  margin: 40px 0;
  padding: 20px;
  border-radius: 8px;
}
blockquote {
  margin: 20px 0;
  padding: 10px 20px;
  background-color: #EFEFEF;
  word-break: break-all;
}
@media screen and ( max-width: 768px ) {
  blockquote {
    padding: 10px;
  }
}
cite {
  font-size: 1.4rem;
  font-style: normal;
  word-break: break-all;
}
cite:before {
  font-family: 'Font Awesome 6 Free';
  content: "\f101";
  display: inline-block;
  margin: 0 6px 0 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: #000000;
}
figure {
  margin: auto;
  position: relative;
}
figure img {
  margin: auto;
  display: block;
  border: 1px solid #3C3CAA;
  border-radius: 20px;
}
figure a:after {
  font-family: "Font Awesome 6 Free";
  content: "\f424";
  font-size: 2.0rem;
  font-weight: 900;
  display: inline-block;
  position: absolute;
  right: 20px;
  margin-top: -50px;
  color: #BBBBBB;
  transition: background-color 0.3s, color 0.3s;
}
figure a:hover:after {
  color: #3C3CAA;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and ( max-width: 768px ) {
  figure a:after {
    font-size: 1.6rem;
    right: 10px;
    margin-top: -40px;
  }
}
figcaption {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  text-align: center;
}
input, select {
  -webkit-appearance: menulist;
  appearance: menulist;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
input, select, textarea {
  font-size: 18px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  background-color: #FFFFFF;
  border: 1px solid #000000;
  padding: 2px 4px;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover {
  cursor: pointer;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.alignleft {
  clear: both;
  display: inline;
  float: left;
  margin: 0 30px 30px 0;
}
.alignright {
  clear: both;
  display: inline;
  float: right;
  margin: 0 0 30px 30px;
}
.aligncenter {
  clear: both;
  display: block;
  margin: 30px auto;
  text-align: center;
}
@media screen and ( max-width: 1024px ) {
  .alignleft,
  .alignright,
  .aligncenter {
    width: 100%;
    display: block!important;
    margin: 20px auto!important;
    text-align: center!important;
  }
}
.email:after {
  content: "@";
}
.clearfix {
  clear: both;
}



/****************************/
/********** H Tag **********/
/****************************/

h1 {
  clear: both;
  margin: 30px 0;
  padding: 0;
  font-size: 3.0rem;
  font-weight: 700;
  font-style: normal;
  line-height: 160%;
  color: #000000;
  position: relative;
  text-decoration: none;
}
h2 {
  clear: both;
  margin: 30px 0;
  padding: 0;
  font-size: 2.8rem;
  font-weight: 700;
  font-style: normal;
  line-height: 160%;
  color: #000000;
  position: relative;
  text-decoration: none;
}
h3 {
  clear: both;
  margin: 30px 0;
  padding: 0;
  font-size: 2.6rem;
  font-weight: 700;
  font-style: normal;
  line-height: 160%;
  color: #000000;
  position: relative;
  text-decoration: none;
}
h4 {
  clear: both;
  margin: 30px 0;
  padding: 0;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 160%;
  color: #000000;
  position: relative;
  text-decoration: none;
}
h5 {
  clear: both;
  margin: 30px 0;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: normal;
  line-height: 160%;
  color: #000000;
  position: relative;
  text-decoration: none;
}
h6 {
  clear: both;
  margin: 30px 0;
  padding: 0;
  font-size: 2.0rem;
  font-weight: 700;
  font-style: normal;
  line-height: 160%;
  color: #000000;
  position: relative;
  text-decoration: none;
}



/*******************************/
/********** File Icon **********/
/*******************************/

.pdf:after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c1";
  margin: 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #A50000;
  display: inline-block;
}
.word:after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c2";
  margin: 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2B5693;
  display: inline-block;
}
.excel:after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c3";
  margin: 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #1F7043;
  display: inline-block;
}
.zip:after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c6";
  margin: 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  display: inline-block;
}
.video:after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c8";
  margin: 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FD0000;
  display: inline-block;
}



/*******************************/
/********** Font Size **********/
/*******************************/

.f40 {
  font-size: 4.0rem;
}
.f38 {
  font-size: 3.8rem;
}
.f36 {
  font-size: 3.6rem;
}
.f34 {
  font-size: 3.4rem;
}
.f32 {
  font-size: 3.2rem;
}
.f30 {
  font-size: 3.0rem;
}
.f28 {
  font-size: 2.8rem;
}
.f26 {
  font-size: 2.6rem;
}
.f24 {
  font-size: 2.4rem;
}
.f22 {
  font-size: 2.2rem;
}
.f20 {
  font-size: 2.0rem;
}
.f19 {
  font-size: 1.9rem;
}
.f18 {
  font-size: 1.8rem;
}
.f17 {
  font-size: 1.7rem;
}
.f16 {
  font-size: 1.6rem;
}
.f15 {
  font-size: 1.5rem;
}
.f14 {
  font-size: 1.4rem;
}
.f13 {
  font-size: 1.3rem;
}
.f12 {
  font-size: 1.2rem;
}
.f11 {
  font-size: 1.1rem;
}
.f10 {
  font-size: 1.0rem;
}



/***************************/
/********** Width **********/
/***************************/

.w100 {
  width: 100%;
}
.w90 {
  width: 90%;
}
.w80 {
  width: 80%;
}
.w70 {
  width: 70%;
}
.w60 {
  width: 60%;
}
.w50 {
  width: 50%;
}
.w40 {
  width: 40%;
}
.w33 {
  width: 33%;
}
.w30 {
  width: 30%;
}
.w25 {
  width: 25%;
}
.w20 {
  width: 20%;
}
.w15 {
  width: 15%;
}
.w10 {
  width: 10%;
}



/**************************************/
/********** Padding & Margin **********/
/**************************************/

.pd50 {
  padding: 50px;
}
.pd40 {
  padding: 40px;
}
.pd30 {
  padding: 30px;
}
.pd20 {
  padding: 20px;
}
.pd10 {
  padding: 10px;
}
.pd5 {
  padding: 5px;
}
.mg50 {
  margin: 50px;
}
.mg40 {
  margin: 40px;
}
.mg30 {
  margin: 30px;
}
.mg20 {
  margin: 20px;
}
.mg10 {
  margin: 10px;
}
.mg5 {
  margin: 5px;
}



/***************************/
/********** Color **********/
/***************************/

.color01 {
  color: #000000;
}
.color02 {
  color: #BBBBBB;
}
.color03 {
  color: #EFEFEF;
}
.color04 {
  color: #FFFFFF;
}
.color05 {
  color: #3C3CAA;
}
.color06 {
  color: #46C8FF;
}
.color07 {
  color: #FF68CF;
}
.color08 {
  color: #FF0010;
}



/**********************************/
/********** Border Color **********/
/**********************************/

.border01 {
  border: 1px solid #000000;
}
.border02 {
  border: 1px solid #BBBBBB;
}
.border03 {
  border: 1px solid #EFEFEF;
}
.border04 {
  border: 1px solid #FFFFFF;
}
.border05 {
  border: 1px solid #3C3CAA;
}
.border06 {
  border: 1px solid #46C8FF;
}
.border07 {
  border: 1px solid #FF68CF;
}
.border08 {
  border: 1px solid #FF0010;
}



/**************************************/
/********** Background Color **********/
/**************************************/

.bgcolor01 {
  background-color: #000000;
}
.bgcolor02 {
  background-color: #BBBBBB;
}
.bgcolor03 {
  background-color: #EFEFEF;
}
.bgcolor04 {
  background-color: #FFFFFF;
}
.bgcolor05 {
  background-color: #3C3CAA;
}
.bgcolor06 {
  background-color: #46C8FF;
}
.bgcolor07 {
  background-color: #FF68CF;
}
.bgcolor08 {
  background-color: #FF0010;
}



/***********************************/
/********** Border Radius **********/
/***********************************/

.radius02 {
  border-radius: 2px;
}
.radius03 {
  border-radius: 3px;
}
.radius04 {
  border-radius: 4px;
}
.radius06 {
  border-radius: 6px;
}
.radius08 {
  border-radius: 8px;
}
.radius10 {
  border-radius: 10px;
}
.radius12 {
  border-radius: 12px;
}



/********************************/
/********** Ul-Style01 **********/
/********************************/

ul.ul-style01 {
  margin: 0;
  padding: 0 20px;
}
ul.ul-style01 li {
  margin: 10px;
  padding: 0;
  list-style-position: outside;
  list-style-type: disc;
}



/*********************************/
/********** Ul-Style 02 **********/
/*********************************/

ul.ul-style02 {
  margin: 0;
  padding: 0 20px;
}
ul.ul-style02 li {
  margin: 10px;
  padding: 0;
  list-style-position: outside;
  list-style-type: square;
}



/*********************************/
/********** Ul-Style 03 **********/
/*********************************/

ul.ul-style03 {
  margin: 0;
  padding: 0 20px;
}
ul.ul-style03 li {
  margin: 10px;
  padding: 0;
  list-style-position: outside;
  list-style-type: circle;
}



/*********************************/
/********** Ul-Style 04 **********/
/*********************************/

ul.ul-style04 {
  margin: 0;
  padding: 0 20px;
}
ul.ul-style04 li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.ul-style04 li:nth-child(odd) {
  margin: 0;
  padding: 10px 20px;
  list-style-position: inside;
  list-style-type: none;
  background-color: #EFEFEF;
}
ul.ul-style04 li:nth-child(even) {
  margin: 0;
  padding: 10px 20px;
  list-style-position: inside;
  list-style-type: none;
  background-color: #FFFFFF;
}



/*********************************/
/********** Ul-Style 05 **********/
/*********************************/

ul.ul-style05 {
  margin: 0;
  padding: 0 20px;
  list-style-type: none;
}
ul.ul-style05 li {
  margin: 10px 0;
  padding: 0;
}
ul.ul-style05 li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f101";
  margin: 0 10px 0 0;
  font-size: 1.6rem;
  font-weight: 900;
  color: #000000;
}



/*********************************/
/********** Ul-Style 06 **********/
/*********************************/

ul.ul-style06 {
  margin: 0;
  padding: 0 20px;
  list-style-type: none;
}
ul.ul-style06 li {
  margin: 10px 0;
  padding: 0;
}
ul.ul-style06 li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  margin: 0 10px 0 0;
  font-size: 1.6rem;
  font-weight: 900;
  color: #000000;
}



/*********************************/
/********** Ul-Style 07 **********/
/*********************************/

ul.ul-style07 {
  margin: 0;
  padding: 0 20px;
  list-style-type: none;
}
ul.ul-style07 li {
  margin: 10px 0;
  padding: 0;
}
ul.ul-style07 li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0c8";
  margin: 0 10px 0 0;
  font-size: 1.6rem;
  font-weight: 900;
  color: #000000;
}



/*********************************/
/********** Ul-Style 08 **********/
/*********************************/

ul.ul-style08 {
  margin: 0;
  padding: 0 20px;
  list-style-type: none;
}
ul.ul-style08 li {
  margin: 10px 0;
  padding: 0;
}
ul.ul-style08 li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0c6";
  margin: 0 10px 0 0;
  font-size: 1.6rem;
  font-weight: 900;
  color: #000000;
}



/*********************************/
/********** Ol-Style 01 **********/
/*********************************/

ol.ol-style01 {
  margin: 0;
  padding: 0 20px;
  display: table;
}
ol.ol-style01 li {
  display: table-row;
  counter-increment: num;
}
ol.ol-style01 li:after {
  content: "";
  display: block;
  margin: 10px 0;
}
ol.ol-style01 li:before {
  content: counter(num) ".";
  display: table-cell;
  padding-right: 10px;
  text-align: right;
}



/*********************************/
/********** Ol-Style 04 **********/
/*********************************/

ol.ol-style02 {
  margin: 0;
  padding: 0 20px;
  display: table;
}
ol.ol-style02 li {
  display: table-row;
  counter-increment: num;
}
ol.ol-style02 li:after {
  content: "";
  display: block;
  margin: 10px 0;
}
ol.ol-style02 li:before {
  content: counter(num,upper-alpha) ".";
  display: table-cell;
  padding-right: 10px;
  text-align: center;
}



/*********************************/
/********** Ol-Style 03 **********/
/*********************************/

ol.ol-style03 {
  margin: 0;
  padding: 0 20px;
  display: table;
}
ol.ol-style03 li {
  display: table-row;
  counter-increment: num;
}
ol.ol-style03 li:after {
  content: "";
  display: block;
  margin: 10px 0;
}
ol.ol-style03 li:before {
  content: counter(num,lower-alpha) ".";
  display: table-cell;
  padding-right: 10px;
  text-align: center;
}



/*********************************/
/********** Ol-Style 04 **********/
/*********************************/

ol.ol-style04 {
  margin: 0;
  padding: 0 20px;
  display: table;
}
ol.ol-style04 li {
  display: table-row;
  counter-increment: num;
}
ol.ol-style04 li:after {
  content: "";
  display: block;
  margin: 10px 0;
}
ol.ol-style04 li:before {
  content: counter(num,upper-roman) ".";
  display: table-cell;
  padding-right: 10px;
  text-align: center;
}



/*********************************/
/********** Dl-Style 01 **********/
/*********************************/

.dl-style01 {
  margin: 20px 0;
  padding: 0;
}
.dl-style01 dl {
  margin: 1px 0;
  padding: 0;
  width: 100%;
}
.dl-style01 dl dt {
  margin: 0;
  padding: 10px 20px;
  background-color: #EFEFEF;
  color: #000000;
  width: 100%;
}
.dl-style01 dl dd {
  margin: 0;
  padding: 20px;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
}



/*********************************/
/********** Dl-Style 02 **********/
/*********************************/

.dl-style02 {
  margin: 20px 0;
  padding: 0;
}
.dl-style02 dl {
  margin: 1px 0;
  padding: 0;
  width: 100%;
  display: flex;
}
.dl-style02 dl dt {
  margin: 0;
  padding: 10px;
  width: 30%;
  background-color: #EFEFEF;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dl-style02 dl dd {
  margin: 0;
  padding: 10px;
  background-color: #FFFFFF;
  color: #000000;
  width: 70%;
}



/*********************************/
/********** Dl-Style 03 **********/
/*********************************/

.dl-style03 {
  margin: 20px 0;
  padding: 0;
}
.dl-style03 dl {
  margin: 1px 0;
  padding: 0;
  width: 100%;
  display: flex;
}
.dl-style03 dl dt {
  margin: 0;
  padding: 10px;
  width: 30%;
  background-color: #EFEFEF;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dl-style03 dl dd {
  margin: 0;
  padding: 10px;
  width: 70%;
  background-color: #FFFFFF;
  color: #000000;
}
@media screen and ( max-width: 768px ) {
  .dl-style03 {
    margin: 20px 0;
    padding: 0;
  }
  .dl-style03 dl {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .dl-style03 dl dt {
    margin: 0;
    padding: 10px;
    background-color: #EFEFEF;
    color: #000000;
    width: 100%;
  }
  .dl-style03 dl dd {
    margin: 0;
    padding: 10px;
    background-color: #FFFFFF;
    color: #000000;
    width: 100%;
  }
}



/*********************************/
/********** Dl-Style 04 **********/
/*********************************/

.dl-style04 {
  margin: 20px 0;
  padding: 0;
}
.dl-style04 dl {
  margin: 20px 0;
  padding: 0;
  width: 100%;
}
.dl-style04 dl dt {
  margin: 0 0 5px 0;
  padding: 0 0 5px 0;
  width: 100%;
  border-bottom: 1px solid #BBBBBB;
}
.dl-style04 dl dd {
  margin: 0;
  padding: 0;
  width: 100%;
}



/***************************/
/********** Table **********/
/***************************/

table {
  margin: 0;
  padding: 0;
  width: 100%;
}
table caption {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 160%;
  padding: 10px;
  text-align: center;
  color: #000000;
}
table th {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 160%;
}
table td {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 160%;
}



/*******************************/
/********** Local Nav **********/
/*******************************/

.local-nav {
  clear: both;
  margin: 30px 0;
  padding: 0;
}
.local-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.local-nav ul li {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.local-nav ul li a {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.local-nav ul li+li:before {
  content: "|";
  display: inline-block;
  margin: 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
}



/***********************************/
/********** External Link **********/
/***********************************/

.external-link:after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  margin: 0 10px;
  font-size: 1.4rem;
  font-weight: 900;
  display: inline-block;
}



/****************************/
/********** Button **********/
/****************************/

.button {
  margin: 30px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  white-space: nowrap;
}
.button a,
.button input,
input[type="submit"] {
  margin: 0;
  padding: 16px 32px;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.2rem;
  text-decoration: none;
  color: #FFFFFF;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.button a:after,
.button input:after,
input[type="submit"]:after {
  font-family: 'Font Awesome 6 Free';
  content: "\f111";
  font-size: 2.0rem;
  font-weight: 900;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  transform: rotate(0deg);
}
.button a:hover,
input[type="submit"]:hover {
  color: #FFFFFF;
  background-image: linear-gradient(to right, #3AD7FF 0%, #6064FF 100%);
}
.button a:hover:after,
.button input:hover:after,
input[type="submit"]:hover:after {
  content: "\f111\f111";
  font-size: 1.8rem;
  color: #FFFFFF;
  transform: rotate(360deg);
  transform-origin: center;
  transition: transform 0.8s ease;
}
@media screen and ( max-width: 768px ) {
  .button {
    justify-content: center;
  }
  .button a,
  .button input,
  input[type="submit"] {
    padding: 12px 24px;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    gap: 5px;
  }
}



/******************************/
/********** Readmore **********/
/******************************/

.readmore {
  margin: 30px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  white-space: nowrap;
}
.readmore a {
  margin: 0;
  padding: 0;
  color: #3C3CAA;
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 140%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.readmore a:after {
  font-family: 'Font Awesome 6 Free';
  content: "\f111";
  font-size: 2.0rem;
  font-weight: 900;
  display: inline-block;
  background-image: linear-gradient(to right, #3AD7FF 0%, #6064FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  transform: rotate(0deg);
}
.readmore a:hover:after {
  content: "\f111\f111";
  font-size: 1.8rem;
  transform: rotate(360deg);
  transform-origin: center;
  transition: transform 0.8s ease;
}
@media screen and ( max-width: 768px ) {
  .readmore {
    justify-content: center;
  }
  .readmore a {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    gap: 5px;
  }
}



/********************************/
/********** Google Map **********/
/********************************/

.googlemap {
  clear: both;
  margin: 30px 0;
  padding: 0;
  border: 1px solid #BBBBBB;
  overflow: hidden;
}
.googlemap iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  border: none;
  display: block;
}



/*****************************/
/********** YouTube **********/
/*****************************/

.movie {
  clear: both;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.movie iframe,
.movie video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0 0 10px 0;
}
.movie div {
  width: 49%;
  margin: 0 2% 2% 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.movie div:nth-child(even) {
  margin: 0 0 2% 0;
}
@media screen and ( max-width: 768px ) {
  .movie {
    display: flex;
    flex-direction: column;
  }
  .movie div {
    width: 100%;
    margin: 0 0 20px 0;
  }
}



/*****************************/
/********** Gallery **********/
/*****************************/

.gallery {
  margin: 30px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 140%;
}
.gallery img {
  margin-bottom: 6px;
}
.gallery-2col div {
  width: calc(100% / 2 - 10px);
  text-align: center;
}
.gallery-3col div {
  width: calc(100% / 3 - 13.333px);
  text-align: center;
}
.gallery-4col div {
  width: calc(100% / 4 - 15px);
  text-align: center;
}
@media screen and ( max-width: 768px ) {
  .gallery {
    gap: 10px;
  }
  .gallery.row div {
    width: 100%;
  }
  .gallery-2col div {
    width: calc(100% / 2 - 5px);
  }
  .gallery-3col div {
    width: calc(100% / 3 - 6.667px);
  }
  .gallery-4col div {
    width: calc(100% / 3 - 6.667px);
  }
}