@charset "UTF-8";
/* CSS Document */

/*******************************
* ResetCSS
*******************************/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

ul,
li {
  list-style: none;
}

/***********************
root設定
***********************/

:root {
  --main_color: #000;
}

body {
  font-size: 16px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  color: var(--main_color);
}

/***********************
フォント設定
***********************/
.ff_min {
  font-family: "Noto Serif JP", serif;
}

.fw_bold {
  font-weight: 700;
}

/***********************
画像設定
***********************/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.el_imgTxt {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

/***********************
リンク設定
***********************/

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
  -webkit-appearance: none;
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
}

/***********************
レイアウト
***********************/

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: block;
  min-height: 1%;
  clear: both;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex.between {
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.flex.start {
  justify-content: flex-start;
}

#wrapper {
  position: relative;
  width: 100%;
  /* overflow-x: hidden; */
}

#main {
  /* padding-top: 121px; */
}

.page #main {
  padding-top: 121px;
}

@media screen and (max-width: 480px) {
  #wrapper {
  }
}

/***********************
Utils
***********************/

.ly_inner {
  max-width: 1200px;
  padding: 0 4.16%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1240px) {
  .ly_inner {
    padding: 0 20px;
  }
}

/***********************
Header
***********************/

#ly_header {
  padding: 36px 46px;
  width: 100%;
  height: 121px;
  background: #fff;
  position: fixed;
  z-index: 10;
}

.home #ly_header {
  background: transparent;
}

#ly_header .logo {
  width: 220px;
  float: left;
  font-weight: 400;
}

.home #ly_header .logo a {
  color: #fff;
}

#ly_header .logo img {
  vertical-align: middle;
}

#ly_header .logo .min {
  font-size: 13px;
  margin-left: 7px;
  margin-right: 12px;
  vertical-align: middle;
}

#ly_header .logo .name {
  font-size: 21px;
  vertical-align: middle;
}

.un_menuTrigger {
  display: none;
}

.bl_menu {
  max-width: 684px;
  float: right;
  padding-top: 15px;
  padding-right: 8px;
}

.bl_hNav {
  width: 100%;
}

.bl_hNav li {
  margin-left: 30px;
}

.bl_hNav li a {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
}

.bl_hNav li a:hover {
  opacity: 0.6;
}

.home .bl_hNav li a {
  color: #fff;
}

@media screen and (max-width: 1000px) {
  #ly_header {
    padding: 23px 20px;
    height: 94px;
  }

  #ly_header .logo {
    width: 213px;
  }

  .un_menuTrigger {
    position: fixed;
    width: 40px;
    height: 22px;
    display: block;
    top: 34px;
    right: 20px;
    z-index: 9999;
  }

  .un_menuTrigger span {
    position: absolute;
    left: 50%;
    width: 40px;
    height: 1px;
    background-color: #000;
    transform: translateX(-50%);
  }

  .home .un_menuTrigger span {
    background-color: #fff;
  }

  .un_menuTrigger span:nth-of-type(1) {
    top: 6px;
  }
  .un_menuTrigger span:nth-of-type(2) {
    bottom: 6px;
  }

  .un_menuTrigger.active span:nth-of-type(1) {
    transform: translateX(-20px) translateY(4px) rotate(-30deg);
    background-color: #fff !important;
  }
  .un_menuTrigger.active span:nth-of-type(2) {
    transform: translateX(-20px) translateY(-4px) rotate(30deg);
    background-color: #fff !important;
  }

  #ly_header .bl_menu {
    width: 100%;
    max-width: none;
    position: fixed;
    top: -200vh;
    right: inherit;
    left: 0;
    background: #000;
    height: 100vh;
    z-index: 9998;
    padding-top: 108px;
    padding-left: 47px;
  }

  #ly_header.active .bl_menu {
    top: 0;
  }

  .bl_hNav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .bl_hNav li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 26px;
  }

  .bl_hNav li a {
    text-align: left;
    padding-left: 22px;
    background: url(../images/common/ico_arw_right_white.svg) left center no-repeat;
    background-size: 12px 8px;
    color: #fff;
  }
}

@media screen and (max-width: 480px) {
}

/***********************
Footer
***********************/

#ly_footer {
}

#ly_footer .footer_top {
  background: url(../images/common/ph_footer_contact.jpg) center center no-repeat;
  background-size: cover;
  padding: 167px 0 185px;
  position: relative;
  color: #fff;
}

#ly_footer .ly_inner {
  z-index: 1;
}

#ly_footer .footer_top .info {
  width: 35%;
}

#ly_footer .footer_top .conts_ttl {
  margin-bottom: 30px;
}

#ly_footer .footer_top .conts_ttl::before {
  background: #fff;
}

#ly_footer .footer_top .desc {
  font-size: 13px;
  line-height: 1.85;
}

#ly_footer .footer_top .contact {
  width: 54.8%;
  padding-top: 45px;
}

#ly_footer .footer_top .tel {
  width: 280px;
}

#ly_footer .footer_top .tel_num {
  font-size: 20px;
}

#ly_footer .footer_top .num {
  font-size: 36px;
  padding-left: 16px;
}

#ly_footer .footer_top .time {
  font-size: 13px;
  display: block;
  text-align: right;
  padding-top: 10px;
}

#ly_footer .footer_top a {
  color: #fff;
}

#ly_footer .footer_top .mail {
  width: 43.6%;
  max-width: 253px;
}

#ly_footer .footer_top .mail a {
  border-radius: 10px;
  border: solid 1px #fff;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  display: block;
}

#ly_footer .footer_top .mail a:hover {
  background: #22501b;
  border: solid 1px #22501b;
}

#ly_footer .footer_bottom {
  padding: 70px 0;
}

#ly_footer .footer_bottom .ly_inner {
  padding: 0;
}

#ly_footer .footer_bottom .comp {
  width: 422px;
}

#ly_footer .footer_bottom .logo {
  width: 96px;
  float: left;
}

#ly_footer .footer_bottom .txt {
  width: 310px;
  padding-top: 15px;
  float: right;
}

#ly_footer .footer_bottom .name {
  font-size: 21px;
  margin-bottom: 15px;
}

#ly_footer .footer_bottom .name .min {
  font-size: 16px;
  margin-right: 10px;
}

#ly_footer .footer_bottom .addr {
  font-size: 13px;
  line-height: 2;
}

#ly_footer .footer_bottom .addr br {
  display: none;
}

#ly_footer .footer_bottom .nav {
  width: 51%;
  position: relative;
}

#ly_footer .footer_bottom .f_nav {
  text-align: right;
}

#ly_footer .footer_bottom li {
  margin-right: 6.5%;
  display: inline-block;
  transition: all 0.3s;
}

#ly_footer .footer_bottom li a {
  font-size: 13px;
}

#ly_footer .footer_bottom li:last-child {
  margin-right: 0;
}

#ly_footer .footer_bottom .un_Copyright {
  font-size: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}

@media screen and (max-width: 1240px) {
  #ly_footer .footer_bottom .ly_inner {
    padding: 0 20px;
  }
  #ly_footer .footer_bottom li {
    margin-right: 3%;
  }
}

@media screen and (max-width: 1000px) {
  #ly_footer .footer_top {
    padding: 68px 0 86px;
  }

  #ly_footer .footer_top .info {
    width: 100%;
  }

  #ly_footer .footer_top .desc {
    font-size: 12px;
  }

  #ly_footer .footer_top .desc br {
    display: none;
  }

  #ly_footer .footer_top .contact {
    width: 280px;
    margin: 0 auto;
  }

  #ly_footer .footer_top .tel {
    width: 280px;
    margin-bottom: 40px;
  }

  #ly_footer .footer_top .mail {
    width: 100%;
    margin: 0 auto;
  }

  #ly_footer .footer_bottom {
    padding: 30px 0 50px;
  }

  #ly_footer .footer_bottom .comp {
    width: 326px;
    margin: 0 auto 40px;
  }

  #ly_footer .footer_bottom .logo {
    width: 75px;
    padding-top: 10px;
  }

  #ly_footer .footer_bottom .txt {
    width: auto;
    padding-top: 0;
  }

  #ly_footer .footer_bottom .name {
    font-size: 18px;
    margin-bottom: 12px;
  }

  #ly_footer .footer_bottom .name .min {
    font-size: 14px;
    margin-right: 5px;
  }

  #ly_footer .footer_bottom .addr {
    font-size: 12px;
    line-height: 1.66;
  }

  #ly_footer .footer_bottom .addr br {
    display: block;
  }

  #ly_footer .footer_bottom .nav {
    width: 100%;
  }

  #ly_footer .footer_bottom .f_nav {
    width: 268px;
    margin: 0 auto;
    text-align: left;
  }

  #ly_footer .footer_bottom li {
    margin-right: 25px;
    margin-bottom: 15px;
  }

  #ly_footer .footer_bottom li a {
    font-size: 13px;
  }

  #ly_footer .footer_bottom li:nth-child(3n) {
    margin-right: 0;
  }

  #ly_footer .footer_bottom li:last-child {
    margin-right: 0;
  }

  #ly_footer .footer_bottom .un_Copyright {
    padding-top: 10px;
    position: static;
    text-align: center;
  }
}

/***********************
Util
***********************/

.ani_group .ani_g_obj,
.ani_obj {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.7s;
}

.ani_group .ani_g_obj.active,
.ani_obj.active {
  transform: translateY(0);
  opacity: 1;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.bg_img {
  background: url(../images/common/bg_image.jpg) center top repeat;
  background-size: 500px 500px;
}

.conts_ttl {
  font-size: 16px;
  font-weight: 700;
  padding-left: 45px;
  position: relative;
}

.conts_ttl::before {
  content: "";
  width: 35px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
}

.sub_ttl {
  font-size: 32px;
  line-height: 1.6;
  color: #22501b;
  font-weight: 400;
}

.min_head {
  text-align: center;
}

.min_head .head {
  font-size: 22px;
  margin-bottom: 15px;
}

.min_head .en {
  font-size: 16px;
  color: #cbcbcb;
}

.sec_page_header {
  height: 430px;
  text-align: center;
  position: relative;
}

.sec_page_header .img,
.sec_page_header .ttl_box {
  position: absolute;
  top: 73px;
  left: 50%;
  transform: translateX(-50%);
}

.sec_page_header .img {
  top: 146px;
}

.sec_page_header .page_ttl {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1em;
  writing-mode: vertical-rl;
}
.sec_page_header .page_ttl.brand{
  letter-spacing: 0.25em;
}

.btn_contact {
  display: block;
  font-size: 13px;
  border: solid 4px #84a580;
  background: #22501b;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  width: 253px;
  height: 50px;
  line-height: 42px;
  transition: all 0.3s;
}
.btn_contact:hover{
  border: solid 4px #22501b;
}

.btn_inf {
  display: block;
  max-width: 350px;
  height: 87px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 87px;
  color: #22501b;
  text-align: center;
  border: solid 1px #e3e2d8;
  margin: 0 auto;
  background: url(../images/common/ico_arw_bottom_green.svg) calc(50% + 85px) center no-repeat;
  background-size: 12px 18px;
}

.btn_inf.arw_right {
  display: block;
  max-width: 350px;
  height: 87px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 87px;
  color: #22501b;
  text-align: center;
  border: solid 1px #e3e2d8;
  margin: 0 auto;
  background: url(../images/common/ico_arw_right_green.svg) calc(50% + 82px) center no-repeat;
  background-size: 18px 12px;
}

.cmn_tbl {
  width: 100%;
}

.cmn_tbl th {
  width: 24.3%;
  border-right: solid 1px #e2dfdf;
  padding: 15px 20px;
  color: #22501b;
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  text-align: left;
}

.cmn_tbl td {
  width: 75.7%;
  padding: 15px 25px;
  font-size: 14px;
  line-height: 2;
}

.cmn_tbl td dt {
  width: 60px;
  float: left;
  margin-bottom: 15px;
}

.cmn_tbl td dd {
  margin-left: 85px;
  margin-bottom: 15px;
}

.cmn_tbl td dt:last-of-type,
.cmn_tbl td dd:last-of-type {
  margin-bottom: 0;
}

.boxes {
  position: relative;
}

.boxes .vt::before,
.boxes .vt::after {
  content: "";
  position: absolute;
}

.boxes .vt::before {
  border-top-left-radius: 20px;
  top: 30px;
  left: 0;
  bottom: 30px;
  border-left: solid 2px #22501a;
}

.boxes .vt::after {
  border-bottom-right-radius: 20px;
  top: 30px;
  right: 0;
  bottom: 30px;
  border-right: solid 2px #22501a;
}

.boxes .hl::before,
.boxes .hl::after {
  content: "";
  position: absolute;
}

.boxes .hl::before {
  border-top-left-radius: 20px;
  top: 0;
  left: 30px;
  right: 30px;
  border-top: solid 2px #22501a;
}

.boxes .hl::after {
  border-bottom-right-radius: 20px;
  bottom: 0;
  left: 30px;
  right: 30px;
  border-bottom: solid 2px #22501a;
}

.boxes .borders {
  position: relative;
  padding: 50px;
}

.boxes .borders::before,
.boxes .borders::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
}

.boxes .borders::before {
  top: 0;
  left: 0;
  border-top-left-radius: 20px;
  border-top: solid 2px #22501a;
  border-left: solid 2px #22501a;
}

.boxes .borders::after {
  bottom: 0;
  right: 0;
  border-bottom-right-radius: 20px;
  border-bottom: solid 2px #22501a;
  border-right: solid 2px #22501a;
}

.color_txt {
  color: #22501b;
}

.bg_grad {
  position: relative;
  background: linear-gradient(12deg, rgba(168, 224, 217, 1) 0%, rgba(240, 240, 200, 1) 100%);
}

.icon_link {
  display: inline-block;
}

.icon_link .mark {
  width: 70px;
  height: 70px;
  border-radius: 70px;
  background: rgba(34, 80, 27, 0.44);
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s;
}

a:hover .icon_link .mark {
  background: #22501b;
}

.icon_link .mark::before {
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 70px;
  background: #22501b;
  position: absolute;
  top: 8px;
  left: 8px;
}

.icon_link .mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon_link .txt {
  padding-left: 20px;
  color: #22501b;
  font-size: 22px;
  display: inline-block;
  vertical-align: middle;
}

.icon_link .txt .min {
  font-size: 16px;
}

.icon_link .en {
  font-size: 14px;
  padding-top: 5px;
  color: #cbcbcb;
}

.sticky_box {
  position: sticky;
  top: 121px;
}

@media screen and (max-width: 768px) {
  .bg_img {
    background-size: 250px 250px;
  }

  .sub_ttl {
    font-size: 24px;
  }

  .min_head {
    text-align: center;
  }

  .min_head .head {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .min_head .en {
    font-size: 12px;
    color: #cbcbcb;
  }

  .sec_page_header {
    height: 215px;
  }

  .sec_page_header .img,
  .sec_page_header .ttl_box {
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }

  .sec_page_header .img {
    top: 146px;
  }

  .sec_page_header .page_ttl {
    font-size: 24px;
    writing-mode: inherit;
    letter-spacing: 0.25em;
  }

  .btn_contact {
    display: block;
    font-size: 13px;
    border: solid 4px #84a580;
    background: #22501b;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    width: 253px;
    height: 50px;
    line-height: 42px;
  }

  .btn_inf {
    display: block;
    max-width: 350px;
    height: 87px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 87px;
    color: #22501b;
    text-align: center;
    border: solid 1px #e3e2d8;
    margin: 0 auto;
    background: url(../images/common/ico_arw_bottom_green.svg) calc(50% + 85px) center no-repeat;
    background-size: 12px 18px;
  }

  .btn_inf.arw_right {
    display: block;
    max-width: 350px;
    height: 87px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 87px;
    color: #22501b;
    text-align: center;
    border: solid 1px #e3e2d8;
    margin: 0 auto;
    background: url(../images/common/ico_arw_right_green.svg) calc(50% + 82px) center no-repeat;
    background-size: 18px 12px;
  }

  .cmn_tbl {
    width: 100%;
  }

  .cmn_tbl th {
    width: 24.3%;
    border-right: solid 1px #e2dfdf;
    padding: 15px 20px;
    color: #22501b;
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
    text-align: left;
  }

  .cmn_tbl td {
    width: 75.7%;
    padding: 15px 25px;
    font-size: 14px;
    line-height: 2;
  }

  .cmn_tbl td dt {
    width: 60px;
    float: left;
    margin-bottom: 15px;
  }

  .cmn_tbl td dd {
    margin-left: 85px;
    margin-bottom: 15px;
  }

  .cmn_tbl td dt:last-of-type,
  .cmn_tbl td dd:last-of-type {
    margin-bottom: 0;
  }

  .boxes {
    position: relative;
  }

  .boxes .vt::before,
  .boxes .vt::after {
    content: "";
    position: absolute;
  }

  .boxes .vt::before {
    bottom: 35px;
  }

  .boxes .vt::after {
    top: 35px;
  }

  .boxes .hl::before {
    right: 0;
  }

  .boxes .hl::after {
    left: 0;
  }

  .boxes .borders {
    position: relative;
    padding: 50px;
  }

  .boxes .borders::before,
  .boxes .borders::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
  }

  .boxes .borders::before {
    top: 0;
    left: 0;
    border-top-left-radius: 20px;
    border-top: solid 2px #22501a;
    border-left: solid 2px #22501a;
  }

  .boxes .borders::after {
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 20px;
    border-bottom: solid 2px #22501a;
    border-right: solid 2px #22501a;
  }

  .color_txt {
    color: #22501b;
  }

  .bg_grad {
    position: relative;
    background: linear-gradient(12deg, rgba(168, 224, 217, 1) 0%, rgba(240, 240, 200, 1) 100%);
  }

  .icon_link {
    display: inline-block;
  }

  .icon_link .mark {
    width: 45px;
    height: 45px;
  }

  .icon_link .mark::before {
    width: 35px;
    height: 35px;
    top: 5px;
    left: 5px;
  }

  .icon_link .mark img {
    width: 12px;
  }

  .icon_link .txt {
    padding-left: 12px;
  }

  .sticky_box {
    position: sticky;
    top: 121px;
  }
}

@media screen and (max-width: 480px) {
  .conts_ttl {
    padding-left: 0;
  }

  .conts_ttl::before {
    display: none;
  }

  .cmn_tbl th {
    width: 24.3%;
    border-right: solid 1px #e2dfdf;
    padding: 15px 20px;
    color: #22501b;
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
    text-align: left;
  }

  .cmn_tbl td {
    width: 75.7%;
    padding: 15px 25px;
    font-size: 14px;
    line-height: 2;
  }

  .cmn_tbl {
    width: 90%;
    margin: 0 auto;
  }

  .cmn_tbl th,
  .cmn_tbl td {
    width: 100%;
    display: block;
    padding: 15px 0;
  }

  .cmn_tbl th {
    border-right: none;
    border-bottom: solid 1px #e2dfdf;
  }
}
.sp-block {
  display: none;
}
@media screen and (max-width: 590px) {
  .sp-block {
    display: block;
  }
}
/* モーダル背景 */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* 背景色を黒にして透明度80%に設定 */
}

/* モーダルのコンテンツ */
.modal-content {
  background-color: transparent; /* 背景色を透明に設定 */
  margin: 0; /* マージンを0に設定 */
  padding: 0; /* パディングを0に設定 */
  border: none; /* 枠線を削除 */
  width: 90%;
  max-width: 800px;
  height: auto; /* 高さを自動に設定 */
  position: absolute; /* 絶対位置に設定 */
  top: 50%; /* 画面の垂直中央に配置 */
  left: 50%; /* 画面の水平中央に配置 */
  transform: translate(-50%, -50%); /* モーダルを中央に配置 */
  padding: 20px; /* モーダル内に余白を追加 */
  box-sizing: border-box; /* パディングを含めたサイズ調整 */
}

/* モバイル用スタイル */
@media (max-width: 767px) {
  .modal-content {
    width: 100%;
    height: auto;
    max-width: none; /* 最大幅の制限を解除 */
  }
}

/* 閉じるボタン */
.close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  position: absolute; /* モーダル内に固定 */
  top: 10px; /* モーダルの上から10px */
  right: 10px; /* モーダルの右から10px */
  z-index: 10000; /* モーダルよりも前面に表示 */
  padding: 10px; /* ボタンのサイズ調整 */
  border-radius: 50%; /* ボタンを丸くする */
  background-color: transparent; /* 背景色を透明に設定 */
  border: 2px solid transparent; /* 初期状態では透明な枠線 */
  transition: background-color 0.3s, color 0.3s, border 0.3s; /* スムーズなトランジション */
}

.close:hover,
.close:focus {
  color: black; /* ホバー時の文字色 */
  background-color: white; /* ホバー時の背景色 */
  border: 2px solid black; /* ホバー時の枠線 */
  text-decoration: none;
  cursor: pointer;
}

/* ビデオスタイル */
video {
  width: 100%;
  height: auto;
}

.mail_text {
  display: block;
  max-width: 450px;
  aspect-ratio: 1/0.086;
  margin-inline: auto;
  background: url(../images/common/mail_text.svg) center / contain no-repeat;
  text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.mail_text:hover {
  opacity: 0.8;
}