@charset "UTF-8";
* {
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

/*  reset
------------------------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption,
th,
td {
  text-align: left;
}

button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/*  common
------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", Yu Gothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

.flexbox_list {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}

.cf, .cf:after {
  /* For IE 6/7 (trigger hasLayout) */
  zoom: 1;
}
.cf:before, .cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}

a {
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

a:link,
a:visited {
  color: #000;
  text-decoration: none;
}

a:hover,
a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: bottom;
}

p {
  line-height: 1.5;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.flexboxb {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
}

.flexbox.mid {
  align-items: center;
}

.flexbox.center {
  justify-content: center;
}

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

.flL {
  float: left;
}

.flR {
  float: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.taR {
  text-align: right;
}

.rel {
  position: relative;
}

.mincho {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.gothic {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", Yu Gothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 2px;
}

.max {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sp_max {
    width: 100%;
  }
}
/*  content
------------------------------------*/
#wrapper {
  min-width: 1000px;
  overflow: hidden;
}

#main {
  padding-top: 42px;
}

.container {
  width: 93.33333%;
  max-width: 1200px;
  margin-inline: auto;
}

.contents-inner {
  width: 91.66667%;
  margin-inline: auto;
}

.text_break > span {
  display: inline-block;
}

.button {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 0.77em 2em 0.77em 1.5em;
  text-align: center;
}
.button::after {
  position: absolute;
  bottom: 45%;
  left: 100%;
  transform: translateX(-45%);
  content: "";
  width: 3.91667em;
  height: 0.5em;
  background: url(../images/top/icon_arrow_right.svg) center center/contain no-repeat;
  transition: transform 0.3s ease-out;
}
.button:hover::after {
  transform: translateX(calc(-45% + 5px));
}

@media screen and (max-width: 768px) {
  #wrapper {
    min-width: auto;
  }
  .button {
    font-size: 2.66667vw;
  }
  .contents-inner {
    width: 92.85715%;
  }
}
/*  side__fix
------------------------------------*/
#side__fix {
  position: fixed;
  right: 0;
  top: 50%;
  width: 208px;
  margin-top: -144px;
  font-size: 17px;
  line-height: 1;
  transition: right 0.3s;
  z-index: 500;
}
#side__fix.hide {
  right: -153px;
}
#side__fix.hide .side__link li a {
  padding: 20px 12px;
}
#side__fix #side__button {
  display: none;
}
#side__fix .side__link {
  position: relative;
}
#side__fix .side__link:before, #side__fix .side__link.cf:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #025851;
  background: rgba(0, 79, 77, 0.94);
}
#side__fix .side__link li {
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
#side__fix .side__link li a {
  display: block;
  padding: 20px;
  color: #fff;
}
#side__fix .side__link li a:hover {
  background: #037168;
  opacity: 1;
}
#side__fix .side__link li a .icon {
  width: 32px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #side__fix {
    top: auto;
    right: 0;
    bottom: 120px;
    width: auto;
    max-width: 100%;
    margin-top: 0;
    font-size: 13px;
    transition: right 0.3s;
  }
  #side__fix.hide {
    right: 0;
  }
  #side__fix.hide .side__link li a {
    padding: 16px 12px;
  }
  #side__fix.sp_show .side__link {
    opacity: 1;
    visibility: visible;
  }
  #side__fix.sp_show .side__link li a {
    padding: 16px 16px;
  }
  #side__fix #side__button {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    background: rgba(0, 79, 77, 0.94);
    color: #fff;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
  }
  #side__fix #side__button.sp_show .on {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
  #side__fix #side__button.sp_show .off {
    top: -7px;
    opacity: 0;
    visibility: hidden;
  }
  #side__fix #side__button .on {
    position: absolute;
    left: 0;
    top: 7px;
    width: 60px;
    height: 60px;
    padding-top: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  #side__fix #side__button .on img {
    display: block;
    width: 29px;
    margin: 0 auto;
  }
  #side__fix #side__button .off {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    padding-top: 3px;
    transition: all 0.3s;
  }
  #side__fix #side__button .off .icon {
    display: block;
    width: 28px;
    margin: 0 auto 0;
  }
  #side__fix .side__link {
    position: absolute;
    right: 64px;
    bottom: 0;
    opacity: 0;
    width: 180px;
    visibility: hidden;
    transition: all 0.3s;
  }
  #side__fix .side__link li a {
    padding: 16px;
  }
  #side__fix .side__link li a:hover {
    background: none;
  }
  #side__fix .side__link li a .icon {
    width: 26px;
    margin-right: 15px;
  }
}
/*  header
------------------------------------*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 42px;
  background: #fff;
  line-height: 1;
  z-index: 1000;
}
#header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: calc(100% - 40px);
  margin-inline: auto;
}
#header .header__logo {
  width: 217px;
}
#header .globalMenu {
  font-size: 18px;
}
#header .globalMenu .globalMenu__list {
  display: flex;
  align-items: center;
  gap: clamp(40px, 4vw, 60px);
}
#header .globalMenu .globalMenu__list li a {
  display: block;
  padding: 12px;
  color: #000;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  #header .header__inner {
    width: calc(100% - 30px);
  }
  #header .hamburger {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 0px;
    top: 0px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  #header .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #header .hamburger span:nth-child(1) {
    top: 10px;
  }
  #header .hamburger span:nth-child(2) {
    top: 20px;
  }
  #header .hamburger span:nth-child(3) {
    top: 30px;
  }
  #header .hamburger.active span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #header .hamburger.active span:nth-child(1) {
    top: 20px;
    left: 6px;
    background: #000;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #header .hamburger.active span:nth-child(2) {
    top: 20px;
    background: #000;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #header .hamburger.active span:nth-child(3) {
    top: 20px;
    background: #000;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #header .globalMenu {
    position: fixed;
    z-index: 10000;
    top: 40px;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
    width: 162px;
    max-width: 100%;
    font-size: 16px;
    letter-spacing: 0.1em;
    transform: scale(1, 0);
    transform-origin: right top;
    transition: all 0.6s;
  }
  #header .globalMenu .globalMenu__list {
    display: block;
    margin: 0 auto;
    padding: 10px 0;
    width: 100%;
  }
  #header .globalMenu .globalMenu__list li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  #header .globalMenu .globalMenu__list li:last-child {
    padding-bottom: 0;
  }
  #header .globalMenu .globalMenu__list li a {
    display: block;
    padding: 0.75em 20px;
    text-decoration: none;
    text-align: left;
  }
  #header .globalMenu.active {
    transform: scale(1, 1);
  }
}
/*  footer
------------------------------------*/
#footer {
  height: min(13.33334vw, 65px);
  background-color: #025851;
}
#footer .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px);
  height: 100%;
  margin-inline: auto;
}
#footer .footer__otg-logo {
  width: min(18.66667vw, 128px);
}
#footer .footer__main-logo {
  width: min(40vw, 275px);
}
#footer .footer__main-logo img {
  vertical-align: middle;
}
#footer .pagetop {
  width: min(10.66667vw, 50px);
}

@media screen and (max-width: 768px) {
  #footer .footer__inner {
    width: calc(100% - 30px);
  }
}
/* common */
.pc_block {
  display: block;
}

.sp_block {
  display: none;
}

.pc_inline {
  display: inline;
}

.sp_inline {
  display: none;
}

.pc_hidden {
  display: none !important;
}

@media screen and (max-width: 768px) {
  /* common */
  .pc_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
  .pc_inline {
    display: none;
  }
  .sp_inline {
    display: inline;
  }
  .sp_hidden {
    display: none !important;
  }
  .pc_hidden {
    display: block !important;
  }
}